-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 860 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
[project]
name = "python-cookiecutter"
version = "0.1.0"
description = "Cookiecutter template for Python CLI + Web Dashboard"
requires-python = ">=3.13"
dependencies = []
[tool.uv]
managed = true
[tool.ruff]
# Template files are excluded in .pre-commit-config.yaml
# and contain Jinja2 tags that fail ruff parsing.
lint.select = ["E", "F", "I", "U", "N"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["{{cookiecutter.project_slug}}"]
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.9.4",
"mdformat>=0.7.21",
"mdformat-gfm>=0.1.13",
"mdformat-frontmatter>=2.0.8",
"commitizen>=4.13.7",
"cookiecutter>=2.6.0",
]