-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
198 lines (175 loc) · 4.97 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
195
196
197
198
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "s2spy"
dynamic = ["version"]
description = "python package for s2s forecasts with ai"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">3.8,<3.12"
authors = [
{email = "[email protected]"},
{name = "Yang Liu, Bart Schilperoort, Peter Kalverla, Jannes van Ingen, Sem Vijverberg, Claire Donnelly"}
]
maintainers = [
{name = "Yang Liu", email = "[email protected]"},
{name = "Bart Schilperoort", email = "[email protected]"},
{name = "Peter Kalverla", email = "[email protected]"},
{name = "Jannes van Ingen", email = "[email protected]"},
{name = "Sem Vijverberg", email = "[email protected]"},
{name = "Claire Donnelly", email = "[email protected]"},
]
keywords = [
"AI",
"S2S",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"dask",
"lilio",
"matplotlib",
"netcdf4",
"numpy",
"pandas",
"scikit-learn",
"scipy",
"xarray",
]
[project.optional-dependencies]
dev = [
"bump2version",
"hatch",
"ruff",
"black",
"isort",
"mypy",
"pytest",
"pytest-cov",
]
docs = [ # Required for ReadTheDocs
"myst_parser",
"sphinx",
"sphinx_rtd_theme",
"sphinx-autoapi",
"coverage[toml]",
]
[project.urls]
"Bug Tracker" = "https://github.com/AI4S2S/ai4s2s/issues"
Documentation = "https://ai4s2s.readthedocs.io/"
Homepage = "https://github.com/AI4S2S/ai4s2s"
[tool.hatch.version]
path = "s2spy/__init__.py"
[tool.hatch.publish.index]
disable = true # Requires confirmation when publishing to pypi.
[tool.hatch.build.targets.sdist]
exclude = [
"/.github", "/.mypy_cache", "/.pytest_cache", "/.githooks",
"sonar-project.properties"
]
[tool.hatch.build.targets.wheel]
packages = ["s2spy"]
[tool.hatch.envs.default]
features = ["dev"]
[tool.hatch.envs.default.scripts]
lint = [
"ruff check .",
"mypy .",
"black --check --diff .",
"isort --check-only --diff .",
]
format = ["isort .", "black .", "lint",]
test = ["pytest ./s2spy/ ./tests/ --doctest-modules",]
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 = [
"sphinx-build -c docs -b doctest docs docs/_build",
"sphinx-build -c docs -b coverage docs docs/_build",
"sphinx-build -c docs -b html docs docs/_build/html",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
python_version = "3.9"
[tool.black]
line-length = 88
src_paths = ["s2spy", "tests"]
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"B", # flake8-bugbear
"D", # pydocstyle
"C", # mccabe complexity
# "I", # isort (autosort not working correctly, disabled for now).
"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'
]
ignore = [
"E501", # Line length: fails on many docstrings (needs fixing).
"PLR2004", # magic value used in comparsion (i.e. `if ndays == 28: month_is_feb`).
]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["A", "B", "C", "D", "E", "F", "UP"]
unfixable = []
line-length = 88
exclude = ["docs", "build"]
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py39"
[tool.ruff.per-file-ignores]
"tests/**" = ["D"]
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.mccabe]
max-complexity = 10
# Configuration for when ruff's import sorting is fixed.
# [tool.ruff.isort]
# known-first-party = ["s2spy"]
# force-single-line = true
# lines-after-imports = 2
# no-lines-before = ["future","standard-library","third-party","first-party","local-folder"]
# note that currently isort is not executed using ruff
[tool.isort]
py_version=39
skip = [".gitignore", ".dockerignore"]
skip_glob = ["docs/*"]
force_single_line = true
lines_after_imports = 2
known_first_party = ["s2spy"]
src_paths = ["s2spy", "tests"]
line_length = 120
no_lines_before = ["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
[tool.coverage.run]
branch = true
source = ["s2spy"]
command_line = "-m pytest"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@overload",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:"
]