forked from CI-WATER/gsshapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (58 loc) · 1.89 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
from setuptools import setup, find_packages
requires = [
'affine',
'appdirs',
'dask',
'gdal', #: Install w/ Conda for best results
'geopandas',
'mapkit>=1.2.6',
'pangaea',
'psycopg2',
'pyyaml',
'rapidpy',
'sqlalchemy',
'timezonefinder',
'utm',
'wrf-python'
]
setup(name='gsshapy',
version='2.3.9',
description='An SQLAlchemy ORM for GSSHA model files and a toolkit'
' to convert gridded input into GSSHA input.',
long_description='Documentation can be found at '
'http://gsshapy.readthedocs.io. \n\n'
'.. image:: https://zenodo.org/badge/26494532.svg \n'
' :target: '
'https://zenodo.org/badge/latestdoi/26494532',
author='Nathan Swain, Alan D. Snow, and Scott D. Christensen',
author_email='[email protected]',
url='https://github.com/CI-WATER/gsshapy',
license='BSD 3-Clause License',
keywords='GSSHA, database, object relational model',
packages=find_packages(),
package_data={'': ['grid/land_cover/*.txt']},
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',
'Programming Language :: Python :: 3.5',
],
install_requires=requires,
extras_require={
'tests': [
'coveralls',
'pytest',
'pytest-cov',
],
'docs': [
'mock',
'sphinx',
'sphinx_rtd_theme',
'sphinxcontrib-napoleon',
]
},
)