forked from selimnairb/RHESSysWorkflows
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
83 lines (80 loc) · 3.34 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='rhessysworkflows',
version='1.34',
description='Libraries and command-line scripts for performing RHESSys data preparation workflows.',
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/RHESSysWorkflows',
author='Brian Miles',
author_email='[email protected]',
license='BSD',
packages=['rhessysworkflows',
'rhessysworkflows.command',
'rhessysworkflows.tests'
],
install_requires=[
'ecohydrolib>=1.27',
'numpy>=1.7',
'matplotlib>=1.1',
'pandas',
'scipy',
'patsy',
'statsmodels',
'requests'
],
scripts=['bin/CreateFlowtable.py',
'bin/CreateFlowtableMultiple.py',
'bin/CreateGRASSLocationFromDEM.py',
'bin/CreateWorldfile.py',
'bin/CreateWorldfileMultiple.py',
'bin/DelineateWatershed.py',
'bin/GenerateBaseStationMap.py',
'bin/GenerateCustomSoilDefinitions.py',
'bin/GenerateLandcoverMaps.py',
'bin/GeneratePatchMap.py',
'bin/GenerateSoilTextureMap.py',
'bin/GenerateWorldTemplate.py',
'bin/GIConverter.py',
'bin/ImportClimateData.py',
'bin/ImportRasterMapIntoGRASS.py',
'bin/ImportRHESSysSource.py',
'bin/PatchToCumulativeMap.py',
'bin/PatchToCumulativeValues.py',
'bin/PatchToMap.py',
'bin/PatchToMovie.py',
'bin/PatchZonalStats.py',
'bin/PatchZonalStatsNormalize.py',
'bin/RegisterCustomSoilReclassRules.py',
'bin/RegisterLandcoverReclassRules.py',
'bin/RHESSysPlot.py',
'bin/RHESSysPlotMassbalance.py',
'bin/RunLAIRead.py',
'bin/RunLAIReadMultiple.py',
'bin/RunModel.py'
],
data_files=[('rhessysworkflows/etc/NLCD2006', ['etc/NLCD2006/impervious.rule',
'etc/NLCD2006/lai-recode.rule',
'etc/NLCD2006/landuse.rule',
'etc/NLCD2006/road.rule',
'etc/NLCD2006/stratum.rule'] ),
('rhessysworkflows/etc/NLCD2011', ['etc/NLCD2011/impervious.rule',
'etc/NLCD2011/lai-recode.rule',
'etc/NLCD2011/landuse.rule',
'etc/NLCD2011/road.rule',
'etc/NLCD2011/stratum.rule'] ),
('rhessysworkflows/etc/r.soils.texture', ['etc/r.soils.texture/FAO.dat',
'etc/r.soils.texture/isss.dat',
'etc/r.soils.texture/USDA.dat'] )
],
zip_safe=False)