-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.05 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
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "generate-startercode"
version = "1.8.0"
description = "Generate startercode and solution branches from a shared main branch."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["pyyaml>=6.0.2", "python-gitlab[graphql]>=6.4.0"]
[tool.uv]
package = false
[project.optional-dependencies]
dev = [
"pre-commit>=3.5.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.8.4",
"ty>=0.0.1a16",
"python-semantic-release>=9.15.2",
]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-q"
testpaths = ["tests"]
[tool.semantic_release]
branch = "main"
tag_format = "v{version}"
version_toml = ["pyproject.toml:project.version"]
commit_parser = "conventional"
changelog_file = "CHANGELOG.md"
upload_to_vcs_release = true
assets = ["uv.lock"]
commit_message = "chore(release): v{version} [skip ci]"
commit_author = "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
major_on_zero = false
build_command = "uv lock"