-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.45 KB
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
[project]
name = "python-template"
version = "0.5.1"
description = "Generate production-ready Python and AI stacks by combining frameworks, data engines, tooling, and cloud deployment."
readme = "readme.md"
requires-python = ">=3.13"
authors = [
{ name = "Leynier Gutiérrez González", email = "leynier41@gmail.com" },
]
license = "MIT"
license-files = ["LICENSE"]
# This project is a Copier template, not an installable package.
[build-system]
requires = ["uv_build>=0.12.1,<0.13"]
build-backend = "uv_build"
[tool.uv]
package = false
[dependency-groups]
dev = [
"copier>=9.17.1",
"pydantic>=2.13.4,<3",
"python-hcl2>=8.1.2,<9",
"pyyaml>=6.0.3,<7",
"pytest>=9.1.1",
"pytest-copie>=0.3.1",
"pytest-cov>=7.1.0",
"pytest-xdist>=3.8.0",
"ruff>=0.16.2",
]
docs = [
"zensical>=0.0.53",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "--strict-markers --strict-config"
markers = [
"slow: generates a project and runs its full toolchain (deselect with '-m \"not slow\"')",
"preset: generates and validates an integration-heavy v0.5 preset on Linux",
]
[tool.coverage.run]
source = ["scripts"]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true
exclude_also = [
"if __name__ == .__main__.:",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "SIM", "PTH", "RUF"]
ignore = ["E501"]