forked from petermg/zspotify
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
37 lines (34 loc) · 915 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
36
37
[build-system]
requires = ["setuptools>=58.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zyspotify"
version = "3.0.3"
authors = [
{"name" = "Jonathan Salinas Vargas"},
{"name" = "Yuriy Kovrigin"},
{"name" = "kaitallaoua"},
]
description = "Spotify song downloader without injecting into the windows client"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["downloader", "music", "spotify", "zyspotify"]
license = {text = "GPL-3.0-only"}
classifiers = [
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"librespot @ git+https://github.com/kokarare1212/librespot-python",
"appdirs",
"mutagen",
"music_tag",
"pydub",
"Pillow",
"tqdm",
]
[tool.setuptools]
packages = ["zyspotify"]
[project.scripts]
zyspotify = "zyspotify.__main__:main"