forked from rapid-research/tutorial_rapid-nationalwatermodel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 817 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
from setuptools import setup, find_packages
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="nwm",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Tian Gan",
author_email="[email protected]",
description="Fetch and process data from the National Water Model",
long_description=long_description,
long_description_content_type='text/markdown',
url="http://csdms.colorado.edu",
packages=find_packages(exclude=("tests*",)),
install_requires=[
"bmipy",
"click",
"netcdf4",
"numpy",
"pyyaml",
"requests",
"xarray",
"owslib",
"cftime",
"pandas",
],
entry_points={"console_scripts": ["nwm=nwm.cli:main"]},
)