-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 915 Bytes
/
setup.py
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
from setuptools import setup
README = open("README.md", "r")
readmed = README.read()
README.close()
setup(
name = "deezspot",
version = "1.1",
description = "Downloads songs, albums or playlists from deezer and spotify (clone from https://pypi.org/project/deezloader/)",
long_description = readmed,
long_description_content_type = "text/markdown",
license = "GNU Affero General Public License v3",
python_requires = ">=3.10",
author = "jakiepari",
author_email = "farihmuhammad75@gmail.com",
url = "https://github.com/jakiepari/deezspot",
packages = [
"deezspot",
"deezspot/models", "deezspot/spotloader",
"deezspot/deezloader", "deezspot/libutils"
],
install_requires = [
"mutagen", "pycryptodome", "requests",
"spotipy", "tqdm", "fastapi",
"uvicorn[standard]",
"spotipy-anon",
"librespot"
],
)