forked from UW-Hydro/MetSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 798 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import versioneer
from setuptools import setup
setup(name='metsim',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Meteorology Simulator',
url='https://github.com/UW-Hydro/MetSim',
author='Andrew Bennett',
author_email='[email protected]',
packages=['metsim', 'metsim.methods', 'metsim.cli'],
python_requires='>3.6',
entry_points={
'console_scripts': ['ms = metsim.cli.ms:main']},
install_requires=['xarray>=0.11.0', 'numba', 'numpy', 'pandas>=0.25.0',
'dask', 'distributed', 'toolz', 'netCDF4', 'scipy'],
keywords=['meteorology', 'disaggregation', 'hydrology',
'climate', 'mtclim'],
tests_require=['pytest'],)