-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
312 lines (281 loc) · 7.76 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
####################
# Project Metadata #
####################
[project]
name = "Pytanis"
description = "Utilities for the program organization of conferences using Pretalx"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["pretalx", "conference", "cfp", "google sheet", "gsheet", "helpdesk"]
authors = [
{ name = "Florian Wilhelm", email = "Florian.Wilhelm@gmail.com" },
]
# classifiers from https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"pandas>=2",
"tomli",
"pydantic>=2.5",
"httpx",
"httpx-auth",
"structlog",
"tqdm",
"gspread<6.0", # newer version breaks worksheet.spreadsheet
"gspread-dataframe",
"gspread-formatting",
"webcolors",
]
dynamic = ["version"]
[project.optional-dependencies]
all = [
"ipywidgets", # for nicer progress bar in Jupyter lab/notebook
"pyomo[optional]", # for optimizing the schedule
"highspy", # for MIP/LP/QP solver in pyomo
"pillow", # for the creation of social cards
"seaborn", # for decent plotting
]
[project.urls]
Documentation = "https://pioneershub.github.io/pytanis/"
Sponsor = "https://github.com/sponsors/PioneersHub"
Tracker = "https://github.com/PioneersHub/pytanis/issues"
Source = "https://github.com/PioneersHub/pytanis"
######################
# Build & Versioning #
######################
[tool.hatch.metadata]
# direct dependency references, e.g `pip @ git+https://github.com/pypa/pip.git@master`
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }
[tool.hatch.build.hooks.vcs]
version-file = "src/pytanis/_version.py"
[tool.hatch.build]
packages = ["src/pytanis"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
##################
# External Tools #
##################
[tool.mypy]
files = ["src/pytanis", "tests"]
disallow_untyped_defs = false
follow_imports = "normal" # "silent" for not following
ignore_missing_imports = true
pretty = true
show_column_numbers = true
warn_no_return = false
warn_unused_ignores = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --doctest-glob='*.md'"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["src/pytanis"]
omit = [
"_version.py", # automatically created by hatch-vcs, not in repo
]
[tool.coverage.paths]
source = [
"src/",
"*/site-packages/",
]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
# Have to re-enable the standard pragma
"pragma: no cover",
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
target-version = "py310" # ToDo: Modify according to your needs!
line-length = 120
preview = true # preview features & checks, use with caution
include = ["src/**/*.py", "src/**/*.pyi", "tests/**/*.py", "tests/**/*.pyi"]
[tool.ruff.format]
quote-style = "single" # be more like black
[tool.ruff.lint]
extend-select = [ # features in preview
"W292", # missing-newline-at-end-of-file
]
select = [
"A",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT", # Boolean trap
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"Q",
"RUF",
"S",
"SIM",
"T",
"TID",
"UP",
"W",
"YTT",
"RUF100", # Automatically remove unused # noqa directives
]
ignore = [
# Allow non-abstract empty methods in abstract base classes
"B027",
# Allow boolean positional values in function calls, like `dict.get(... True)`
"FBT003",
# Ignore checks for possible passwords
"S105", "S106", "S107",
# Ignore complexity
"C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915",
"PLC1901", # empty string comparisons
"PLW2901", # `for` loop variable overwritten
"SIM114", # Combine `if` branches using logical `or` operator
"E203", # Whitespace before :, needed for black compatability and also `ruff format`
"ISC001", # causes unexpected behaviour with formatter
"PLR0904", # more than 20 public methods
]
unfixable = [
# "F401", # Don't touch unused imports
]
[tool.ruff.lint.isort]
known-first-party = ["pytanis"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.per-file-ignores]
# Allow print/pprint
"examples/*" = ["T201"]
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "TID252"]
#####################
# Environment Setup #
#####################
[tool.hatch.env]
requires = ["hatch-pip-compile"]
# Default
[tool.hatch.envs.default]
type = "pip-compile"
pip-compile-hashes = false
features = ["all"]
post-install-commands = ["pre-commit install"]
dependencies = [
"coverage[toml]>=6.2",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-vcr",
"pytest-sugar",
"hypothesis",
"jupyterlab",
"ipython",
]
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/pytanis --cov=tests {args}"
no-cov = "cov --no-cov {args}"
debug = "cov --no-cov -s --pdb --pdbcls=IPython.core.debugger:Pdb {args}"
ci = "cov --cov-report lcov {args}"
# Docs environment
[tool.hatch.envs.docs]
type = "pip-compile"
pip-compile-constraint = "default"
dependencies = [
"mkdocs~=1.5",
"mkdocs-material~=9.4",
# Plugins
"mkdocs-include-markdown-plugin",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-minify-plugin~=0.5",
"mkdocs-section-index",
"mkdocs-git-revision-date-localized-plugin~=1.1",
"mkdocstrings[python]",
"mkdocs-redirects~=1.2",
"mkdocs-glightbox~=0.3.0",
"mike~=2.0.0",
# Extensions
"pymdown-extensions~=10.5",
# Necessary for syntax highlighting in code blocks
"pygments~=2.13",
# Validation
"linkchecker~=10.3",
]
[tool.hatch.envs.docs.env-vars]
SOURCE_DATE_EPOCH = "1580601600"
PYTHONUNBUFFERED = "1"
MKDOCS_CONFIG = "mkdocs.yml"
[tool.hatch.envs.docs.scripts]
build = "mkdocs build --config-file {env:MKDOCS_CONFIG} --clean --strict {args}"
serve = "mkdocs serve --config-file {env:MKDOCS_CONFIG} --dev-addr localhost:8000 {args}"
ci-build = "mike deploy --config-file {env:MKDOCS_CONFIG} --update-aliases {args}"
# --ignore-url=None since the SUMMARY.md file leaves a <toc>None</toc> in sitemap.xml
validate = "linkchecker --config .linkcheckerrc --ignore-url=/reference --ignore-url=None site"
# https://github.com/linkchecker/linkchecker/issues/678
build-check = [
"build",
"validate",
]
# Lint environment
[tool.hatch.envs.lint]
type = "pip-compile"
pip-compile-constraint = "default"
dependencies = [
"mypy~=1.7",
"ruff~=0.1.14",
]
[tool.hatch.envs.lint.scripts]
typing = [
"echo \"VERSION: `mypy --version`\"",
"mypy --install-types --non-interactive {args}"
]
style = [
"echo \"VERSION: `ruff --version`\"",
"ruff {args:.}",
"ruff format --check {args:.}",
]
fix = [
"ruff format {args:.}",
"ruff --fix {args:.}",
"style", # feedback on what is not fixable
]
all = [
"style",
"typing",
]