Skip to content

Commit 26502e2

Browse files
authored
Merge pull request #3 from 1kbgz/copier-update-2026-02-15T05-52-33
Update from copier (2026-02-15T05:52:33)
2 parents f65340b + 01835e5 commit 26502e2

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: 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 = "ccflow-s3"
7-
authors = [{name = "1kbgz", email = "dev@1kbgz.com"}]
9+
authors = [
10+
{name = "1kbgz", email = "dev@1kbgz.com"},
11+
]
812
description = "ccflow models for S3"
913
readme = "README.md"
1014
license = { text = "Apache-2.0" }
@@ -44,6 +48,7 @@ develop = [
4448
"pytest-cov",
4549
"ruff>=0.9,<0.15",
4650
"twine",
51+
"ty",
4752
"uv",
4853
"wheel",
4954
]
@@ -98,28 +103,48 @@ artifacts = []
98103
src = "/"
99104

100105
[tool.hatch.build.targets.sdist]
101-
packages = ["ccflow_s3"]
106+
packages = [
107+
"ccflow_s3",
108+
]
102109

103110
[tool.hatch.build.targets.wheel]
104-
packages = ["ccflow_s3"]
111+
packages = [
112+
"ccflow_s3",
113+
]
105114

106115
[tool.hatch.build.targets.wheel.shared-data]
107116

108117
[tool.pytest.ini_options]
109-
addopts = ["-vvv", "--junitxml=junit.xml"]
118+
addopts = [
119+
"-vvv",
120+
"--junitxml=junit.xml",
121+
]
110122
testpaths = "ccflow_s3/tests"
111123

112124
[tool.ruff]
113125
line-length = 150
114126

115127
[tool.ruff.lint]
116-
extend-select = ["I"]
128+
extend-select = [
129+
"I",
130+
]
117131

118132
[tool.ruff.lint.isort]
119133
combine-as-imports = true
120134
default-section = "third-party"
121-
known-first-party = ["ccflow_s3"]
122-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
135+
known-first-party = [
136+
"ccflow_s3",
137+
]
138+
section-order = [
139+
"future",
140+
"standard-library",
141+
"third-party",
142+
"first-party",
143+
"local-folder",
144+
]
123145

124146
[tool.ruff.lint.per-file-ignores]
125-
"__init__.py" = ["F401", "F403"]
147+
"__init__.py" = [
148+
"F401",
149+
"F403",
150+
]

0 commit comments

Comments
 (0)