File: pyproject.toml

package info (click to toggle)
metalfinder 2.1.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 248 kB
  • sloc: python: 805; sh: 8; makefile: 7
file content (35 lines) | stat: -rw-r--r-- 751 bytes parent folder | download
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "metalfinder"
authors = [{name = "Louis-Philippe Véronneau", email = "pollo@debian.org"}]
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
    "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
    "Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
    "flit_core >=3.7.1",
    "requests >=2.27",
    "mutagen",
    "feedgenerator",
    "packaging",
]
dynamic = ["version", "description"]

[project.urls]
Home = "https://gitlab.com/baldurmen/metalfinder"

[project.optional-dependencies]
doc = [
	"docutils",
]
test = [
  "pytest",
]

[project.scripts]
metalfinder = "metalfinder.__main__:main"