generated from felix-hilden/python-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (42 loc) · 1.3 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
50
51
52
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "package"
description = "Python package template."
readme = "readme.rst"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = []
keywords = []
authors = [{name = "Felix Hildén", email = "[email protected]"}]
maintainers = [{name = "Felix Hildén", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
homepage = "https://github.com/felix-hilden/python-package"
download = "https://github.com/felix-hilden/python-package"
source = "https://github.com/felix-hilden/python-package"
issues = "https://github.com/felix-hilden/python-package/issues"
documentation = "https://github.com/felix-hilden/python-package"
[tool.setuptools.dynamic]
version = {attr = "package.__version__"}
[tool.pytest.ini_options]
python_files = "*.py"
testpaths = ["tests"]
[tool.coverage.run]
source = ["src"]
branch = true
command_line = "-m pytest"
[tool.coverage.report]
precision = 1
show_missing = true
skip_covered = true
[tool.ruff.lint]
ignore = ["D107", "D203", "D212", "D413"]
[tool.ruff.format]
skip-magic-trailing-comma = true