-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 829 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 829 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
25
26
27
28
29
30
31
from setuptools import find_packages, setup
from hapi2.version import __version__
setup(
name="hitran-api2",
version=__version__,
author="Roman Kochanov",
author_email="",
description="HITRAN Application Programming Interface (HAPI) v2",
url="https://github.com/hitranonline/hapi2",
python_requires=">=3.5",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
"hitran-api",
"SQLAlchemy",
"numpy",
"numba",
"tabulate",
"python-dateutil",
"pyparsing",
"scipy",
"matplotlib",
"jupyter",
],
)