forked from UW-Hydro/MetSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 647 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
setup(name='metsim',
version='1.0.0',
description='Meteorology Simulator',
url='https://github.com/UW-Hydro/MetSim',
download_url='https://github.com/UW-Hydro/MetSim/archive/v1.0.tar.gz',
author='Andrew Bennett',
author_email='bennett.andr@gmail.com',
packages=['metsim', 'metsim.methods'],
scripts=['scripts/ms'],
install_requires=['xarray', 'numba'],
keywords=['meteorology', 'disaggregation', 'hydrology',
'climate', 'mtclim'],
tests_require=['pytest'],)