-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (29 loc) · 1021 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
33
34
35
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["mkpl"]
[project]
name = "make_playlist"
version = "1.11.0"
readme = "README.md"
keywords = ["playlist", "multimedia", "file", "maker", "make", "m3u", "m3u8"]
authors = [{ name = "Matteo Guadrini", email = "[email protected]" }]
maintainers = [
{ name = "Matteo Guadrini", email = "[email protected]" },
]
description = "Make M3U format playlist from command line."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["mutagen", "tempcache"]
[project.scripts]
mkpl = "mkpl:main"
make_playlist = "mkpl:main"
[project.urls]
homepage = "https://github.com/MatteoGuadrini/mkpl"
documentation = "https://matteoguadrini.github.io/mkpl/"
changelog = "https://github.com/MatteoGuadrini/mkpl/blob/master/CHANGES.md"