-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
194 lines (173 loc) · 4.63 KB
/
pyproject.toml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/zampy/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github", "/.mypy_cache", "/.pytest_cache", "/.githooks",
"sonar-project.properties"
]
[tool.hatch.build.targets.wheel]
packages = ["src/zampy"]
[tool.hatch.publish.index]
disable = true # Requires confirmation when publishing to pypi.
[project]
name = "zampy"
description = "python package for getting Land Surface Model input data."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10, <3.13"
authors = [
{email = "[email protected]"},
{name = "Bart Schilperoort, Yang Liu, Fakhereh Alidoost"}
]
maintainers = [
{name = "Bart Schilperoort", email = "[email protected]"},
{name = "Yang Liu", email = "[email protected]"},
{name = "Fakhereh Alidoost", email = "[email protected]"},
]
keywords = [
"data",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"requests",
"pyyaml",
"netcdf4",
"numpy",
"pandas",
"matplotlib",
"xarray",
"scipy", # required for xarray.interpolate
"rioxarray", # required for TIFF files
"tqdm",
"dask[diagnostics]",
"distributed", # dask-distributed
"pint",
"cf_xarray", # required to auto-pint CF compliant datasets.
"pint-xarray",
"cdsapi",
"xarray-regrid", # for regridding
]
dynamic = ["version"]
[project.scripts]
zampy="zampy.cli:run_recipe"
[project.optional-dependencies]
dev = [
"bump2version",
"hatch",
"ruff>0.1.2", # Ruff with formatter is required
"mypy",
"types-requests", # type stubs for request lib
"types-urllib3", # type stubs for url lib
"types-PyYAML",
"pytest",
"pytest-cov",
"pytest-mock",
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-jupyter",
"mkdocstrings[python]",
"mkdocs-gen-files",
]
[tool.hatch.envs.default]
features = ["dev"]
[tool.hatch.envs.default.scripts]
lint = [
"ruff check src/ tests/",
"mypy src/",
"ruff format --check --diff src/ tests/",
]
format = [
"ruff format src/ tests/",
"ruff check src/ tests/ --fix --exit-non-zero-on-fix",
"lint",
]
fast-test = ["pytest -m \"not slow\""]
test = [
"pytest ./src/zampy/ ./tests/ --doctest-modules --doctest-ignore-import-errors",
]
coverage = [
"pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml tests/",
]
[tool.hatch.envs.docs]
features = ["docs"]
[tool.hatch.envs.docs.scripts]
build = ["mkdocs build"]
serve = ["mkdocs serve"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: mark a test to be slow.",
]
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
python_version = "3.10"
exclude = "tests"
[tool.ruff]
line-length = 88
exclude = ["docs", "build", "tests"]
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"B", # flake8-bugbear
"D", # pydocstyle
"C90", # mccabe complexity
"I", # isort
"N", # PEP8-naming
"UP", # pyupgrade (upgrade syntax to current syntax)
"PLE", # Pylint error https://github.com/charliermarsh/ruff#error-ple
"PLR", # Pylint refactor (e.g. too-many-arguments)
"PLW", # Pylint warning (useless-else-on-loop)
]
extend-select = [
"D401", # First line should be in imperative mood
"D400", # First line should end in a period.
"D404", # First word of the docstring should not be 'This'
"TID252", # No relative imports (not pep8 compliant)
]
ignore = [
"PLR2004", # magic value used in comparsion (i.e. `if ndays == 28: month_is_feb`).
"PLR0913", # too many arguments
]
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
known-first-party = ["zampy"]
force-single-line = true
lines-after-imports = 2
no-lines-before = ["future","standard-library","third-party","first-party","local-folder"]
[tool.coverage.run]
branch = true
source = ["src/zampy"]
command_line = "-m pytest"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@overload",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:"
]