-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
85 lines (79 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[metadata]
name = hydrofunctions
version = attr: hydrofunctions.__version__
url = https://github.com/mroberge/hydrofunctions
project_urls =
Documentation = https://hydrofunctions.readthedocs.io
Source = https://github.com/mroberge/hydrofunctions
Latest = https://github.com/mroberge/hydrofunctions/tree/develop
Issue Tracker = https://github.com/mroberge/hydrofunctions/issues
author = Martin Roberge
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering :: Hydrology
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Visualization
Topic :: Utilities
license = MIT license
description = A suite of convenience functions for exploring water data in a Jupyter Notebook
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = hydrofunctions hydrology USGS stream gauge water NWIS
copyright = Copyright 2016-2023 Martin Roberge and contributors
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find:
install_requires =
importlib_metadata
matplotlib
numpy>=1.16.0
pandas>=2
requests
IPython
pyarrow
[options.packages.find]
where = src
[options.extras_require]
docs =
nbsphinx
pandoc
Sphinx >= 1.4.4
dev =
nbsphinx
pandoc
Sphinx >= 1.4.4
black
build
bumpversion >= 0.5.3
coverage >= 4.1
cryptography >= 1.4
flake8 >= 2.6.0
ipykernel
pip >= 19.1.1
pre-commit
pytest
pytest-cov
PyYAML >= 3.11
setuptools >= 47.0.0
tox >= 2.3.1
twine >= 1.11.0
watchdog >= 0.8.3
wheel >= 0.31.0
[flake8]
exclude =
docs
tests
.tox
max-line-length = 88
extend-ignore = E501