-
Notifications
You must be signed in to change notification settings - Fork 115
/
pyproject.toml
41 lines (34 loc) · 950 Bytes
/
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
[tool.poetry]
description = "Czech Python user group homepage"
authors = ["Honza Javorek <[email protected]>"]
readme = "README.md"
homepage = "https://python.cz/"
repository = "https://github.com/pyvec/python.cz/"
classifiers = ["Private :: Do Not Upload"]
package-mode = false
[tool.poetry.dependencies]
python = "~3.11"
mkdocs-material = "9.5.39"
strictyaml = "1.7.3"
ics = {version = "0.8.0.dev0", allow-prereleases = true}
requests = "2.32.3"
mkdocs = "1.6.1"
teemup = "1.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.2"
pytest-ruff = "0.4.1"
[tool.pytest.ini_options]
python_files = "test_*.py"
testpaths = "tests"
norecursedirs = "node_modules"
addopts = "--ff --ruff --ruff-format"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
combine-as-imports = true
lines-after-imports = 2
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"