forked from nasa/pyturbo-aero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (25 loc) · 753 Bytes
/
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
from setuptools import setup
_config = {
"name": "pyturbo-aero",
"version":"1.0.0",
"url": "https://gitlab.grc.nasa.gov/lte-turbo/pyturbo",
"author": "Paht Juangphanich",
"author_email": "[email protected]",
"packages":["pyturbo","pyturbo.helper","pyturbo.aero"],
"install_requires":['plotly','tqdm','scipy','pandas','numpy','matplotlib'],
'license':"GNU GPLv3"
}
def main() -> int:
""" Execute the setup command.
"""
def version():
""" Get the local package version. """
return _config["version"]
_config.update({
"version": version(),
})
setup(**_config)
return 0
# Make the script executable.
if __name__ == "__main__":
raise SystemExit(main())