-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (64 loc) · 2.07 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
55
56
57
58
59
60
61
62
63
64
65
66
import string
from setuptools import setup
__version__ = (1, 0, 1)
setup(
name="modelmeta",
description="An ORM representation of the model metadata database",
keywords="sql database climate",
packages=['modelmeta', 'mm_cataloguer', 'ncwms_configurator'],
version='.'.join(str(d) for d in __version__),
url="http://www.pacificclimate.org/",
author="James Hiebert",
author_email="[email protected]",
zip_safe=False,
install_requires = '''
sqlalchemy
alembic
psycopg2
numpy
netCDF4
nchelpers>=5.5.0
python-dateutil
sqlparse
PyCRS
lxml
'''.split(),
package_data = {
'modelmeta': '''
data/mddb-v1.sqlite
data/mddb-v2.sqlite
data/bad_tiny_gcm.nc
data/tiny_gcm.nc
data/tiny_downscaled.nc
data/tiny_hydromodel_gcm.nc
data/tiny_gcm_climo_yearly.nc
data/tiny_gcm_climo_seasonal.nc
data/tiny_gcm_climo_monthly.nc
data/tiny_gridded_obs.nc
data/tiny_streamflow.nc
'''.split()
},
include_package_data = True,
scripts = '''
scripts/copyproddb.py
scripts/mktestdb.py
scripts/list
scripts/list-csv
scripts/index_netcdf
scripts/associate_ensemble
scripts/ncwms_configurator
scripts/generate_manifest
'''.split(),
classifiers=['Development Status :: 5 - Production/Stable',
'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'
]
)