zspotify/setup.py

33 lines
976 B
Python
Raw Normal View History

2021-11-30 11:59:45 +01:00
import pathlib
from setuptools import setup
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="zspotify",
version="0.5.3",
description="A spotify downloader.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Footsiefat/zspotify.git",
author="logykk",
2021-12-01 09:39:25 +01:00
author_email="logyx1@protonmail.com",
2021-11-30 11:59:45 +01:00
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.9",
],
packages=['zspotify'],
2021-12-05 00:41:46 +01:00
install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm',
2021-12-06 04:39:38 +01:00
'librespot @ https://github.com/kokarare1212/librespot-python/archive/refs/heads/rewrite.zip'],
2021-11-30 11:59:45 +01:00
include_package_data=True,
2021-12-01 09:39:25 +01:00
)