-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (29 loc) · 850 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
[project]
name = "jukebox-fm"
version = "0.2.0"
description = "Play LastFM music recommendations using: mpd, yt-dlp and python"
keywords = ["mpd", "lastfm", "music", "yt-dlp"]
readme = "README.md"
authors = [
{ name = "Nathan Paul", email = "mail@polarhive.net" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"yt-dlp",
"toml",
"python-mpd2"
]
[project.urls]
Homepage = "https://github.com/polarhive/jukebox"
Issues = "https://github.com/polarhive/jukebox/issues"
[tool.setuptools]
packages = { find = { where = ["src"] } }
[project.scripts]
jukebox-fm = "jukebox_fm.jukebox:main"