forked from zotify-dev/zotify
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 813 Bytes
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
38
[build-system]
requires = [
"setuptools >= 40.9.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "zotify"
version = "0.17.2"
description = "A highly customizable music and podcast downloader"
authors = [
{ name = "Zotify Contributors" },
{ name = "Googolplexed" },
]
requires-python = ">=3.10"
license = "Unlicense"
license-files = ["LICENSE"]
readme = "README.md"
keywords = ["python", "music", "podcast", "downloader"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"librespot @ git+https://github.com/Googolplexed0/librespot-python.git",
"ffmpy",
"music_tag",
"Pillow",
"pkce",
"protobuf==3.20.1",
"pwinput",
"tabulate[widechars]",
"tqdm"
]
[project.scripts]
zotify = "zotify.__main__:main"