forked from erdc/spt_compute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name='spt_ecmwf_autorapid_process',
version='1.1.0',
description='Python interface for RAPID (rapid-hub.org)',
long_description='Computational framework to ingest ECMWF ensemble runoff forcasts;'
' 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, RAPID, Flood Prediction, Streamflow Prediction Tool',
author='Alan Dee Snow',
author_email='[email protected]',
url='https://github.com/erdc-cm/spt_ecmwf_autorapid_process',
download_url='https://github.com/erdc-cm/spt_ecmwf_autorapid_process/archive/1.1.0.tar.gz',
license='BSD 3-Clause',
packages=find_packages(),
install_requires=['numpy', 'netCDF4', 'RAPIDpy', 'tethys_dataset_services'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)