-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
54 lines (44 loc) · 991 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "app-name"
version = "0.1.0"
description = "A beautiful description."
authors = ["Reinder Vos de Wael <[email protected]>"]
license = "LGPL-2.1"
readme = "README.md"
packages = [{include = "APP_NAME", from = "src"}]
[tool.poetry.dependencies]
python = "~3.11"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
mypy = "^1.13.0"
pre-commit = "^4.0.1"
pytest-cov = "^6.0.0"
ruff = "^0.8.1"
[tool.poetry.group.docs.dependencies]
pdoc = "^15.0.0"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
testpaths = [
"tests"
]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 88
indent-width = 4
src = ["src"]
target-version = "py311"
[tool.ruff.lint]
select = ["ANN", "D", "E", "F", "I"]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = []
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"