-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.35 KB
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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "discid"
version = "1.4.0"
description = "Python binding of Libdiscid"
authors = [
{name = "Johannes Dewender", email = "brainz@JonnyJD.net"},
{name = "Philipp Wolfer", email = "ph.wolfer@gmail.com"},
]
requires-python = ">=3.10"
readme = "README.rst"
license = "LGPL-3.0-or-later"
license-files = ["COPYING.LESSER"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Documentation = "https://python-discid.readthedocs.org/"
Repository = "https://github.com/metabrainz/python-discid"
Issues = "https://github.com/metabrainz/python-discid/issues"
Changelog = "https://github.com/metabrainz/python-discid/blob/master/CHANGES.rst"
Funding = "https://metabrainz.org/donate"
[dependency-groups]
test = ["pytest"]
docs = [
"Sphinx>=8.1.3",
"sphinx-autodoc-typehints>=3.0.1",
"sphinx-rtd-theme>=3.0.2",
]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.14.13",
]
[tool.ruff]
src=["discid"]
[tool.ruff.lint]
select = ["E", "F", "W", "B"]