Skip to content

Commit d25f46c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2e6c010 commit d25f46c

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

pyproject.toml

+22-18
Original file line numberDiff line numberDiff line change
@@ -2,48 +2,52 @@
22
build-backend = "setuptools.build_meta"
33
requires = [
44
"setuptools",
5-
"setuptools_scm",
5+
"setuptools-scm",
66
]
77

88
[project]
99
name = "weldx-quality-standard-cookiecutter-template"
1010
version = "0.2.0"
1111
description = "A cookiecutter template to generate WelDX quality standards"
12-
[project.readme]
13-
file = "README.md"
14-
content-type = "text/markdown"
15-
16-
license = {text = "BSD 3-Clause"}
17-
authors = [{name = "Cagtay Fabry", email = "[email protected]"}]
18-
requires-python = ">=3.9"
19-
classifiers = [
12+
readme.authors = [ { name = "Cagtay Fabry", email = "[email protected]" } ]
13+
readme.classifiers = [
2014
"Programming Language :: Python :: 3 :: Only",
2115
"Programming Language :: Python :: 3.9",
2216
"Programming Language :: Python :: 3.10",
2317
"Programming Language :: Python :: 3.11",
2418
"Programming Language :: Python :: 3.12",
2519
]
26-
dependencies = [
20+
readme.content-type = "text/markdown"
21+
readme.dependencies = [
2722
"cookiecutter",
2823
]
29-
[project.optional-dependencies]
30-
test = [
24+
readme.file = "README.md"
25+
readme.license = { text = "BSD 3-Clause" }
26+
readme.requires-python = ">=3.9"
27+
classifiers = [
28+
"Programming Language :: Python :: 3 :: Only",
29+
"Programming Language :: Python :: 3.9",
30+
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
34+
]
35+
optional-dependencies.test = [
3136
"pytest",
3237
"pytest-cookies",
3338
]
34-
[project.urls]
35-
Homepage = '"https://github.com/BAMWeldx/quality-standard-template",'
39+
urls.Homepage = '"https://github.com/BAMWeldx/quality-standard-template",'
3640

3741
[tool.setuptools]
38-
license-files = ["LICENSE"]
42+
license-files = [ "LICENSE" ]
3943
include-package-data = false
4044

4145
[tool.isort]
4246
profile = "black"
4347
default_section = "THIRDPARTY"
44-
known_first_party = ["weldx"]
45-
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
48+
known_first_party = [ "weldx" ]
49+
sections = [ "FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER" ]
4650

4751
[tool.pytest.ini_options]
4852
addopts = "--color=yes"
49-
testpaths = ["tests"]
53+
testpaths = [ "tests" ]

0 commit comments

Comments
 (0)