-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 773 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
[project]
name = "python-template"
version = "0.10.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",
]
[dependency-groups]
dev = [
"mypy>=1.19.1,<2.0.0",
"pre-commit>=4.5.1,<5.0.0",
"pytest>=9.0.2,<10.0.0",
"ruff>=0.15.2",
]
[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/*"