-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
174 lines (156 loc) · 4.35 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
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "lilio/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github", "/.mypy_cache", "/.pytest_cache", "/.githooks",
"sonar-project.properties"
]
[tool.hatch.build.targets.wheel]
packages = ["lilio"]
[tool.hatch.publish.index]
disable = true # Requires confirmation when publishing to pypi.
[project]
name = "lilio"
description = "python package for generating calendars for machine learning timeseries analysis."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9, <3.12"
authors = [
{email = "[email protected]"},
{name = "Claire Donnelly, Yang Liu, Bart Schilperoort, Peter Kalverla, Jannes van Ingen, Sem Vijverberg"}
]
maintainers = [
{name = "Claire Donnelly", email = "[email protected]"},
{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]"},
]
keywords = [
"calendar",
"calendar generation",
"calendar maker",
"machine learning",
"timeseries analysis",
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"netcdf4",
"numpy",
"pandas",
"matplotlib",
"xarray",
"scikit-learn",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"bump-my-version",
"hatch",
"ruff",
"mypy",
"pytest",
"pytest-cov",
"dask[distributed]",
]
docs = [ # Required for ReadTheDocs
"myst_parser",
"sphinx",
"sphinx_rtd_theme",
"sphinx-autoapi",
"coverage[toml]",
"nbsphinx",
"ipykernel",
]
bokeh = [
"bokeh >= 3.0.0",
]
[tool.hatch.envs.default]
features = ["dev", "bokeh"]
[tool.hatch.envs.default.scripts]
lint = [
"ruff check .",
"mypy .",
"ruff format . --check",
]
format = ["ruff format .", "ruff check . --fix", "lint",]
test = ["pytest ./lilio/ ./tests/ --doctest-modules",]
coverage = [
"pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml tests/",
]
[tool.hatch.envs.docs]
features = ["bokeh", "docs"]
[tool.hatch.envs.docs.scripts]
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.10"
[tool.ruff]
target-version = "py39"
line-length = 88
exclude = ["docs", "build"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"B", # flake8-bugbear
"D", # pydocstyle
"C90", # 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'
"TID252", # No relative imports (not pep8 compliant)
]
ignore = [
"PLR2004", # magic value used in comparsion (i.e. `if ndays == 28: month_is_feb`).
]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
pydocstyle.convention = "google"
mccabe.max-complexity = 10
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
[tool.ruff.lint.isort]
known-first-party = ["lilio"]
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 = ["lilio"]
command_line = "-m pytest"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@overload",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:"
]