forked from selimnairb/EcohydroLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (66 loc) · 2.62 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='ecohydrolib',
version='1.19',
description='Libraries and command-line scripts for performing ecohydrology 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/EcohydrologyWorkflowLib',
author='Brian Miles',
author_email='brian_miles@unc.edu',
license='BSD',
packages=['ecohydrolib',
'ecohydrolib.climatedata',
'ecohydrolib.hydro1k',
'ecohydrolib.nhdplus2',
'ecohydrolib.nlcd',
'ecohydrolib.solim',
'ecohydrolib.spatialdata',
'ecohydrolib.ssurgo',
'ecohydrolib.tests',
'ecohydrolib.wcs4dem'
],
install_requires=[
#'GDAL', # GDAL does not build under OS X easy_install/PIP
'pyproj',
'numpy',
'OWSLib',
'oset',
'httplib2',
'shapely'
],
scripts=['bin/DumpClimateStationInfo.py',
'bin/DumpMetadataToiRODSXML.py',
'bin/GenerateSoilPropertyRastersFromSOLIM.py',
'bin/GenerateSoilPropertyRastersFromSSURGO.py',
'bin/GetBoundingboxFromStudyareaShapefile.py',
'bin/GetCatchmentShapefileForHYDRO1kBasins.py',
'bin/GetCatchmentShapefileForNHDStreamflowGage.py',
'bin/GetDEMExplorerDEMForBoundingbox.py',
'bin/GetGHCNDailyClimateDataForBoundingboxCentroid.py',
'bin/GetGHCNDailyClimateDataForStationsInBoundingbox.py',
'bin/GetHYDRO1kDEMForBoundingbox.py',
'bin/GetNHDStreamflowGageIdentifiersAndLocation.py',
'bin/GetNLCDForDEMExtent.py',
'bin/GetSSURGOFeaturesForBoundingbox.py',
'bin/RegisterDEM.py',
'bin/RegisterGage.py',
'bin/RegisterRaster.py',
'bin/RegisterStudyAreaShapefile.py',
'bin/RunCmd.py',
'bin/GHCNDSetup/GHCNDSetup.py',
'bin/NHDPlusV2Setup/NHDPlusV2Setup.py',
'cgi/GetCatchmentFeaturesForStreamflowGage',
'cgi/LocateStreamflowGage'
],
zip_safe=False)