-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (82 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "pydartz"
description = "command line assistant and library for playing darts"
readme = "README.md"
keywords = [
"commandline darts",
]
license = {text = "GPLv3"}
authors = [{ name = "Philipp Metzner", email = "beth.aleph@yahoo.de" }]
dynamic = [
"version",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
audio = [
"simpleaudio==1.0.4",
]
develop = [
"black==25.1.0",
"coverage==7.6.10",
"flake8-pyproject==1.2.3",
"isort==6.0.0",
'pre-commit==4.1.0',
]
packaging = [
"build",
]
[project.urls]
"Bug Tracker" = "https://github.com/pylipp/pydartz/issues"
Documentation = "https://github.com/pylipp/pydartz"
Homepage = "https://github.com/pylipp/pydartz"
"Source Code" = "https://github.com/pylipp/pydartz"
[project.scripts]
pydartz = "pydartz.cli:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["test"]
namespaces = false
[tool.setuptools.data-files]
data = ["data/chase_the_sun.wav"]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
ensure_newline_before_comments = true
[tool.flake8]
max-line-length = "88"
per-file-ignores = "pydartz/cli.py: E501"
[tool.coverage.run]
branch = true
source = ["pydartz"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"except Exception:",
"def .*main()",
]
[tool.setuptools_scm]