-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 877 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0","wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "audio-libraries-tlk"
version = "1.2.2"
authors = [
{ name="Benoît Gaston", email="[email protected]" },
]
description = "A package to extract and manipulate data contained in a music library such as playlists or album cover artwork."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/BenoitGaston/audio-libraries-tlk"
Issues = "https://github.com/BenoitGaston/audio-libraries-tlk/issues"
[tool.pytest.ini_options]
pythonpath = "src"
[tool.setuptools.packages.find]
where = ["./src/",]
[tool.setuptools.package-data]
"*" = ["*.*"]