-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
86 lines (80 loc) · 2.27 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
86
[metadata]
name = pynhd
description = Process and access NHDPlus V2 data through NLDI and WaterData web services.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/cheginit/pynhd
author = Taher Chegini
author_email = [email protected]
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: GIS
Topic :: Scientific/Engineering :: Hydrology
Typing :: Typed
project_urls =
Homepage = https://github.com/cheginit/pynhd
Issues = https://github.com/cheginit/pynhd/issues
CI = https://github.com/cheginit/pynhd/actions
Changelog = https://github.com/cheginit/pynhd/blob/main/HISTORY.rst
[options]
packages = find:
install_requires =
async-retriever>=0.3.1
cytoolz
geopandas>=0.7
networkx
numpy>=1.17
pandas>=1.0
pyarrow
pygeoogc>=0.12
pygeoutils>=0.12
requests
shapely>=1.6
importlib-metadata;python_version < '3.8'
python_requires = >=3.7
include_package_data = True
zip_safe = False
[options.extras_require]
test =
pytest-cov
pytest-xdist[psutil]
[options.package_data]
pynhd =
py.typed
[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
D107 # no need to add docstring for __init__
D105 # no need to add docstring to magic methods
exclude =
.eggs
__init__.py
.ipynb_checkpoints
.nox
tests/*.py
noxfile.py
[darglint]
strictness = short
docstring_style = numpy
ignore = DAR401,DAR103
ignore_regex = ^_(.*)
[codespell]
skip = __pycache__,_build,.mypy_cache,.git,./htmlcov,.nox