-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
44 lines (43 loc) · 1.59 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
from setuptools import setup, find_packages
setup(
name='spt_compute',
version='2.0.1',
description='Computational framework for the Streamflow Prediciton Tool',
long_description='Computational framework to ingest ECMWF ensemble runoff forcasts '
' or otherLand Surface Model forecasts;'
' generate input for and run the RAPID (rapid-hub.org) program'
' using HTCondor or Python\'s Multiprocessing; and upload to '
' CKAN in order to be used by the Streamflow Prediction Tool (SPT).'
' There is also an experimental option to use the AutoRoute program'
' for flood inundation mapping.',
keywords='ECMWF, WRF, RAPID, Flood Prediction, Streamflow Prediction Tool',
author='Alan Dee Snow',
author_email='alan.d.snow@usace.army.mil',
url='https://github.com/erdc/spt_compute',
license='BSD 3-Clause',
packages=find_packages(),
install_requires=[
'numpy',
'netCDF4',
'pandas',
'RAPIDpy',
'tethys_dataset_services',
'xarray',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
extras_require={
'tests': [
'coveralls',
'pytest',
'pytest-cov',
],
},
)