-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
46 lines (42 loc) · 1.34 KB
/
setup.cfg
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
40
41
42
43
44
45
46
[metadata]
name = hydrotools
version = attr: hydrotools._version.__version__
author = Jason A. Regina and Austin Raney
author_email = [email protected]
description = Suite of tools for retrieving USGS NWIS observations and evaluating National Water Model (NWM) data.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = USDOC
license_files =
LICENSE
url = https://github.com/NOAA-OWP/hydrotools
project_urls =
Documentation = https://noaa-owp.github.io/hydrotools/
Source = https://github.com/NOAA-OWP/hydrotools/
Tracker = https://github.com/NOAA-OWP/hydrotools/issues
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: Free To Use But Restricted
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Hydrology
Operating System :: OS Independent
[options]
packages = find_namespace:
package_dir =
=src
install_requires =
hydrotools.nwis_client>=3.2.1
hydrotools.nwm_client[gcp]>=5.0.3
hydrotools.events>=1.1.5
hydrotools.metrics>=1.2.3
python_requires = >=3.7
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
develop =
pytest