Skip to content

Commit 855aab8

Browse files
authored
Merge pull request #26 from csp-community/copier-update-2026-02-15T05-53-51
Update from copier (2026-02-15T05:53:51)
2 parents 0b0fa4b + 6164e94 commit 855aab8

2 files changed

Lines changed: 35 additions & 10 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: 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 = "csp-bot-commands"
7-
authors = [{name = "the csp-bot-commands authors", email = "t.paine154@gmail.com"}]
9+
authors = [
10+
{name = "the csp-bot-commands authors", email = "t.paine154@gmail.com"},
11+
]
812
description = "Miscellaneous commands for csp-bot"
913
readme = "README.md"
1014
license = { text = "Apache-2.0" }
@@ -48,6 +52,7 @@ develop = [
4852
"pytest-cov",
4953
"ruff>=0.9,<0.15",
5054
"twine",
55+
"ty",
5156
"uv",
5257
"wheel",
5358
# Command-specific dependencies
@@ -108,28 +113,48 @@ artifacts = []
108113
src = "/"
109114

110115
[tool.hatch.build.targets.sdist]
111-
packages = ["csp_bot_commands"]
116+
packages = [
117+
"csp_bot_commands",
118+
]
112119

113120
[tool.hatch.build.targets.wheel]
114-
packages = ["csp_bot_commands"]
121+
packages = [
122+
"csp_bot_commands",
123+
]
115124

116125
[tool.hatch.build.targets.wheel.shared-data]
117126

118127
[tool.pytest.ini_options]
119-
addopts = ["-vvv", "--junitxml=junit.xml"]
128+
addopts = [
129+
"-vvv",
130+
"--junitxml=junit.xml",
131+
]
120132
testpaths = "csp_bot_commands/tests"
121133

122134
[tool.ruff]
123135
line-length = 150
124136

125137
[tool.ruff.lint]
126-
extend-select = ["I"]
138+
extend-select = [
139+
"I",
140+
]
127141

128142
[tool.ruff.lint.isort]
129143
combine-as-imports = true
130144
default-section = "third-party"
131-
known-first-party = ["csp_bot_commands"]
132-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
145+
known-first-party = [
146+
"csp_bot_commands",
147+
]
148+
section-order = [
149+
"future",
150+
"standard-library",
151+
"third-party",
152+
"first-party",
153+
"local-folder",
154+
]
133155

134156
[tool.ruff.lint.per-file-ignores]
135-
"__init__.py" = ["F401", "F403"]
157+
"__init__.py" = [
158+
"F401",
159+
"F403",
160+
]

0 commit comments

Comments
 (0)