Skip to content

Commit f6ceb7e

Browse files
Update from copier (2026-02-15T05:52:44)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5b63b1e commit f6ceb7e

File tree

2 files changed

+35
-10
lines changed

2 files changed

+35
-10
lines changed

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: b74d698
2+
_commit: 37f89c1
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python

pyproject.toml

Lines changed: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
[build-system]
2-
requires = ["hatchling"]
2+
requires = [
3+
"hatchling",
4+
]
35
build-backend="hatchling.build"
46

57
[project]
68
name = "python-template"
7-
authors = [{name = "Python Project Template Authors", email = "3105306+timkpaine@users.noreply.github.com"}]
9+
authors = [
10+
{name = "Python Project Template Authors", email = "3105306+timkpaine@users.noreply.github.com"},
11+
]
812
description = "A pure-python project template"
913
readme = "README.md"
1014
license = { text = "Apache-2.0" }
@@ -40,6 +44,7 @@ develop = [
4044
"pytest-cov",
4145
"ruff>=0.9,<0.15",
4246
"twine",
47+
"ty",
4348
"uv",
4449
"wheel",
4550
]
@@ -94,31 +99,51 @@ artifacts = []
9499
src = "/"
95100

96101
[tool.hatch.build.targets.sdist]
97-
packages = ["python_template"]
102+
packages = [
103+
"python_template",
104+
]
98105

99106
[tool.hatch.build.targets.wheel]
100-
packages = ["python_template"]
107+
packages = [
108+
"python_template",
109+
]
101110

102111
[tool.hatch.build.targets.wheel.shared-data]
103112

104113
[tool.pytest.ini_options]
105-
addopts = ["-vvv", "--junitxml=junit.xml"]
114+
addopts = [
115+
"-vvv",
116+
"--junitxml=junit.xml",
117+
]
106118
testpaths = "python_template/tests"
107119

108120
[tool.ruff]
109121
line-length = 150
110122

111123
[tool.ruff.lint]
112-
extend-select = ["I"]
124+
extend-select = [
125+
"I",
126+
]
113127

114128
[tool.ruff.lint.isort]
115129
combine-as-imports = true
116130
default-section = "third-party"
117-
known-first-party = ["python_template"]
118-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
131+
known-first-party = [
132+
"python_template",
133+
]
134+
section-order = [
135+
"future",
136+
"standard-library",
137+
"third-party",
138+
"first-party",
139+
"local-folder",
140+
]
119141

120142
[tool.ruff.lint.per-file-ignores]
121-
"__init__.py" = ["F401", "F403"]
143+
"__init__.py" = [
144+
"F401",
145+
"F403",
146+
]
122147

123148
[tool.yardang]
124149
title = "python template"

0 commit comments

Comments
 (0)