-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
36 lines (34 loc) · 965 Bytes
/
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
import versioneer
from setuptools import setup, find_packages
setup(name='pysumma',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A python wrapper for SUMMA',
url='https://github.com/UW-Hydro/pysumma.git',
author='YoungDon Choi, Andrew Bennett',
author_email='choiyd1115@gmail.com, andrbenn@uw.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'xarray>=0.15.0',
'pandas',
'netcdf4>=1.2.5',
'numpy>=1.11.2',
'dask',
'distributed',
'toolz',
'pytest',
'matplotlib',
'pandas',
'hs_restclient',
'nbsphinx'
],
extras_require={'plotting': [
'geopandas',
'fiona',
'cartopy',
'shapely',
'seaborn'
],},
include_package_data=True,
test_suite='pysumma.tests')