forked from NCAR/wrf_hydro_py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·32 lines (31 loc) · 788 Bytes
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
from setuptools import find_packages, setup
setup(
name='wrfhydropy',
version='0.0.18',
packages=find_packages(),
package_data={'wrfhydropy': ['core/data/*']},
url='https://github.com/NCAR/wrf_hydro_py',
license='MIT',
install_requires=[
'pandas',
'f90nml',
'netCDF4',
'numpy==1.18.1',
'deepdiff==3.3.0',
'pathlib==1.0.1',
'xarray==0.14.1',
'datetime',
'properscoring==0.1',
'pytest',
'pytest-html',
'pytest-datadir-ng',
'pytest-lazy-fixture==0.6.3',
'boltons',
'bs4',
'requests',
'dask[bag]'
],
author='James McCreight',
author_email='jamesmcc@ucar.edu',
description='Crude API for the WRF-Hydro model',
)