-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (55 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
67 lines (55 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=64.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ARver"
dynamic = ["version"]
dependencies = ["discid", "musicbrainzngs", "pycdio", "requests"]
requires-python = ">=3.7"
authors = [{ name = "arcctgx", email = "arcctgx@o2.pl" }]
description = "Application for verifying ripped audio files using AccurateRip database."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GPLv3" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping",
]
[project.scripts]
arver = "arver.arver_main:main"
arver-discinfo = "arver.arver_discinfo:main"
arver-ripinfo = "arver.arver_ripinfo:main"
arver-bin-parser = "arver.arver_bin_parser:main"
[project.urls]
Homepage = "https://github.com/arcctgx/ARver"
Issues = "https://github.com/arcctgx/ARver/issues"
[tool.setuptools.dynamic]
version = { attr = "arver.VERSION" }
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
[tool.mypy]
exclude = "build"
[[tool.mypy.overrides]]
module = ["discid", "musicbrainzngs", "cdio", "pycdio"]
ignore_missing_imports = true
[tool.pylint.basic]
# Do not require docstrings for functions whose names begin with
# underscores, or for main().
no-docstring-rgx = "^(_|main$)"
[tool.yapf]
based_on_style = "pep8"
column_limit = 100