-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
103 lines (96 loc) · 2.51 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[metadata]
name = pydaymet
description = Access daily, monthly, and annual climate data via the Daymet web service.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/hyriver/pydaymet
author = Taher Chegini
author_email = [email protected]
license = MIT
license_file = LICENSE
license_files = 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.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://docs.hyriver.io/readme/pydaymet.html
Issues = https://github.com/hyriver/pydaymet/issues
CI = https://github.com/hyriver/pydaymet/actions
Changelog = https://docs.hyriver.io/changelogs/pydaymet.html
[options]
packages = find:
install_requires =
async-retriever>=0.3.5
click>=0.7
dask
lxml
numpy>=1.17
pandas>=1.0
py3dep>=0.13.5
pydantic
pygeoogc>=0.13.5
pygeoutils>=0.13.5
rasterio>=1.2
scipy
shapely>=1.8
xarray>=2022.03.0
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.entry_points]
console_scripts =
pydaymet = pydaymet.cli:cli
[options.extras_require]
speedup =
numba
test =
coverage[toml]
pyarrow>=1.0.1
pytest-cov
pytest-xdist[psutil]
typeguard =
coverage[toml]
pyarrow>=1.0.1
pygments
pytest-cov
pytest-xdist[psutil]
typeguard
[options.package_data]
pydaymet =
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