-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 762 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name="aiida-plugin-migrator",
license="MIT",
version="0.1.0",
description="Formatter for AiiDA plugins",
author="The AiiDA team",
author_email="developers@aiida.net",
url="https://github.com/aiidateam/aiida-plugin-migrator",
scripts = [ "aiida-plugin-migrator.py" ],
install_requires= [
'bowler',
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
)