forked from alastair/python-musicbrainzngs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "musicbrainzngs"
dynamic = ["version", "dependencies", "optional-dependencies"]
license = {text = "BSD 2-clause"}
description = "Python bindings for the MusicBrainz NGS and the Cover Art Archive webservices"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: ISC License (ISCL)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://python-musicbrainzngs.readthedocs.io/"
[tool.coverage.run]
relative_files = true
source = ["musicbrainzngs"]
[tool.coverage.report]
ignore_errors = true
[tool.pytest.ini_options]
addopts = [
"--cov=musicbrainzngs",
"--cov-report=html",
"-ra",
]
[tool.setuptools]
packages=['musicbrainzngs']
include-package-data = false
[tool.setuptools.dynamic]
dependencies = { file = ["requirements-run.txt"] }
optional-dependencies = { test = { file = [
"requirements-test.txt"
] } }
version = { attr = "musicbrainzngs.version.version" }