Skip to content

Commit 6a55919

Browse files
authored
Merge pull request #16 from python-project-templates/copier-update-2026-02-15T05-53-01
Update from copier (2026-02-15T05:53:01)
2 parents 8f93d07 + daf87f9 commit 6a55919

2 files changed

Lines changed: 36 additions & 11 deletions

File tree

.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: false
55
add_extension: python

pyproject.toml

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

57
[project]
68
name = "hatch-js"
7-
authors = [{name = "the hatch-js authors", email = "t.paine154@gmail.com"}]
9+
authors = [
10+
{name = "the hatch-js authors", email = "t.paine154@gmail.com"},
11+
]
812
description = "Hatch plugin for JavaScript builds"
913
readme = "README.md"
1014
license = { text = "Apache-2.0" }
@@ -52,6 +56,7 @@ develop = [
5256
"pytest-cov",
5357
"ruff>=0.9,<0.15",
5458
"twine",
59+
"ty",
5560
"uv",
5661
"wheel",
5762
# test
@@ -113,28 +118,48 @@ artifacts = []
113118
src = "/"
114119

115120
[tool.hatch.build.targets.sdist]
116-
packages = ["hatch_js"]
121+
packages = [
122+
"hatch_js",
123+
]
117124

118125
[tool.hatch.build.targets.wheel]
119-
packages = ["hatch_js"]
126+
packages = [
127+
"hatch_js",
128+
]
120129

121130
[tool.hatch.build.targets.wheel.shared-data]
122131

123132
[tool.pytest.ini_options]
124-
addopts = ["-vvv", "--junitxml=junit.xml"]
133+
addopts = [
134+
"-vvv",
135+
"--junitxml=junit.xml",
136+
]
125137
testpaths = "hatch_js/tests"
126138

127139
[tool.ruff]
128140
line-length = 150
129141

130142
[tool.ruff.lint]
131-
extend-select = ["I"]
143+
extend-select = [
144+
"I",
145+
]
132146

133147
[tool.ruff.lint.isort]
134148
combine-as-imports = true
135149
default-section = "third-party"
136-
known-first-party = ["hatch_js"]
137-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
150+
known-first-party = [
151+
"hatch_js",
152+
]
153+
section-order = [
154+
"future",
155+
"standard-library",
156+
"third-party",
157+
"first-party",
158+
"local-folder",
159+
]
138160

139161
[tool.ruff.lint.per-file-ignores]
140-
"__init__.py" = ["F401", "F403"]
162+
"__init__.py" = [
163+
"F401",
164+
"F403",
165+
]

0 commit comments

Comments
 (0)