33 lines
957 B
Python
33 lines
957 B
Python
from setuptools import setup, find_packages
|
|
|
|
README = open("README.md", "r")
|
|
readmed = README.read()
|
|
README.close()
|
|
|
|
setup(
|
|
name = "deezspot-spotizerr",
|
|
version = "1.2.0",
|
|
description = "Spotizerr's implementation of deezspot",
|
|
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 = find_packages(include=["deezspot", "deezspot.*"]),
|
|
|
|
install_requires = [
|
|
"mutagen==1.47.0",
|
|
"pycryptodome==3.23.0",
|
|
"requests==2.32.3",
|
|
"spotipy==2.25.1",
|
|
"tqdm==4.67.1",
|
|
"fastapi==0.116.1",
|
|
"uvicorn[standard]==0.35.0",
|
|
"spotipy-anon==1.5.2",
|
|
"librespot-spotizerr==0.3.0"
|
|
],
|
|
)
|