-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
54 lines (48 loc) · 1.49 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
54
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"jsonschema>=2.6.0,<3.0.0",
"numpy>=1.13.0",
"netCDF4>=1.5.3",
"pandas>=0.24.2",
"xarray>=0.11.3",
]
TESTS_REQUIRE = [
"pytest",
# Need to manually install Black while we support Python 3.5
# 'black'
]
EXTRAS_REQUIRE = {"testing": TESTS_REQUIRE}
PACKAGE_DATA = {
"aodntools.ncwriter": ["*.json"],
"aodntools.timeseries_products": ["*.json"],
}
PACKAGE_EXCLUDES = ["test_aodntools.*", "test_aodntools"]
PACKAGE_NAME = "aodntools"
setup(
name=PACKAGE_NAME,
version="0.0.0",
packages=find_packages(exclude=PACKAGE_EXCLUDES),
package_data=PACKAGE_DATA,
url="https://github.com/aodn",
license="GPLv3",
author="AODN",
author_email="[email protected]",
description="AODN data tools library",
zip_safe=False,
python_requires=">=3.5",
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
extras_require=EXTRAS_REQUIRE,
test_suite="test_aodntools",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
)