-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
39 lines (37 loc) · 1.07 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='wrfhydropy',
version='0.0.21',
packages=find_packages(),
package_data={'wrfhydropy': ['core/data/*']},
url='https://github.com/NCAR/wrf_hydro_py',
license='MIT',
install_requires=[
'boltons>=23.1.1',
'bs4>=0.0.1',
'dask[bag]>=2.14.0',
'deepdiff>=6.2.3',
'f90nml>=1.2',
'importlib-metadata==4.13.0',
'netCDF4>=1.5.3',
'numpy>=1.23.5',
'pandas>=1.3.5',
'properscoring==0.1',
'pytest<=7.4.4',
'pytest-html>=3.0.0',
'pytest-datadir-ng>=1.1.1',
'pytest-lazy-fixture>=0.6.3',
'requests>=2.23.0',
'spotpy>=1.6.0',
'urllib3>=2.0.2',
'xarray>=0.19'
],
author='WRF-Hydro Team',
author_email='@ucar.edu',
description='API for the WRF-Hydro model',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
)