-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (41 loc) · 1.46 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
from setuptools import setup
__version__ = (5, 5, 11)
setup(
name="nchelpers",
description="Helper classes and methods for Climate and Forecast NetCDF"
"datasets",
keywords="NetCDF climate forecast",
packages=['nchelpers'],
version='.'.join(str(d) for d in __version__),
url="https://github.com/pacificclimate/nchelpers",
author="Rod Glover",
author_email="[email protected]",
zip_safe=True,
install_requires=['netCDF4', 'cached-property', 'python-dateutil'],
package_data={'nchelpers': [
'data/CanESM2-rcp85-tasmax-r1i1p1-2010-2039.nc',
'data/cgcm.nc',
'data/prism_pr_small.nc',
'data/tiny_gcm.nc',
'data/tiny_downscaled.nc',
'data/tiny_hydromodel_gcm.nc',
'data/tiny_mClim_gcm.nc',
'data/tiny_sClim_gcm.nc',
'data/tiny_aClim_gcm.nc',
'data/tiny_streamflow.nc',
]},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)