-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (45 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
VERSION = "0.0.11"
DESCRIPTION = "Python module for composing computations"
CLASSIFIERS = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
def main():
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md") as fin:
desc = fin.read().strip()
options = {
"name": "fppy",
"version": VERSION,
"license": "GPLv3",
"description": DESCRIPTION,
"long_description": desc,
"long_description_content_type": "text/markdown",
"url": "https://github.com/Z-Shang/fpy",
"author": "zshang",
"author_email": "[email protected]",
"classifiers": CLASSIFIERS,
"packages": [
"fpy",
"fpy.composable",
"fpy.control",
"fpy.data",
"fpy.debug",
"fpy.experimental",
"fpy.parsec",
"fpy.utils",
"fpy.tests",
],
"install_requires": ["bytecode"],
}
setup(**options)
if __name__ == "__main__":
main()