forked from selimnairb/RHESSysCalibrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.7 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
def readme():
with open('README.md') as f:
return f.read()
setup(name='rhessyscalibrator',
version='2.1.0',
description='Libraries and command-line scripts for handling RHESSys model calibration.',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Topic :: Scientific/Engineering :: GIS'
],
url='https://github.com/selimnairb/RHESSysCalibrator',
author='Brian Miles',
author_email='brian_miles@unc.edu',
license='BSD',
packages=['rhessyscalibrator', 'rhessyscalibrator.tests'],
install_requires=['numpy>=1.7',
'scipy',
'matplotlib>=1.1',
'pandas',
'rhessysworkflows>=1.21'
],
scripts=['bin/lsf-sim/bjobs.py',
'bin/lsf-sim/bsub.py',
'bin/rhessys_calibrator_behavioral.py',
'bin/rhessys_calibrator_postprocess_behavioral.py',
'bin/rhessys_calibrator_postprocess_behavioral_compare.py',
'bin/rhessys_calibrator_postprocess_export.py',
'bin/rhessys_calibrator_postprocess_behavioral_timeseries.py',
'bin/rhessys_calibrator.py',
'bin/rhessys_calibrator_postprocess.py',
'bin/rhessys_calibrator_restart.py',
'bin/rhessys_calibrator_results.py',
'bin/rw2rc.py'
],
zip_safe=False)