-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (44 loc) · 1.19 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools_scm",
]
[project]
name = "weldx-quality-standard-cookiecutter-template"
version = "0.2.0"
description = "A cookiecutter template to generate WelDX quality standards"
[project.readme]
file = "README.md"
content-type = "text/markdown"
license = {text = "BSD 3-Clause"}
authors = [{name = "Cagtay Fabry", email = "[email protected]"}]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cookiecutter",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cookies",
]
[project.urls]
Homepage = '"https://github.com/BAMWeldx/quality-standard-template",'
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = false
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = ["weldx"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.pytest.ini_options]
addopts = "--color=yes"
testpaths = ["tests"]