-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 883 Bytes
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
[project]
name = "python-template"
version = "0.9.0"
description = "Used to templatize python projects."
authors = [{ name = "Loïc Motheu", email = "lmotheu@gmail.com" }]
readme = "README.md"
requires-python = ">=3.14,<4.0"
dependencies = [
"loguru (>=0.7.3,<0.8.0)"
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
mypy = "^1.19.1"
pre-commit = "^4.5.1"
pytest = "^9.0.2"
ruff = "^0.14.14"
[tool.ruff]
src = ["src"]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D203", "COM812", "ISC001", "D213", "FA102"]
fixable = ["ALL"]
unfixable = []
exclude = ["tests/*"]
[tool.mypy]
exclude = "tests/*"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"