forked from petermg/zspotify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (33 loc) · 879 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
[build-system]
requires = ["setuptools>=58.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zspotify"
version = "2.0.6"
authors = [
{"name" = "Jonathan Salinas Vargas"},
{"name" = "Yuriy Kovrigin"},
]
description = "Spotify song downloader without injecting into the windows client"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["downloader", "music", "spotify", "zspotify"]
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 = ["zspotify"]
[project.scripts]
zspotify = "zspotify.__main__:main"