deemix-py/setup.py

36 lines
1.0 KiB
Python
Raw Normal View History

2020-05-29 19:19:57 +02:00
#!/usr/bin/env python3
2020-05-25 13:21:49 +02:00
import pathlib
2020-05-25 14:04:40 +02:00
from setuptools import find_packages, setup
2020-05-25 13:21:49 +02:00
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="deemix",
2021-10-07 16:19:59 +02:00
version="3.5.5",
2020-05-25 13:21:49 +02:00
description="A barebone deezer downloader library",
long_description=README,
long_description_content_type="text/markdown",
author="RemixDev",
author_email="RemixDev64@gmail.com",
license="GPL3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
2020-05-25 13:21:49 +02:00
"Operating System :: OS Independent",
],
python_requires='>=3.7',
2020-05-25 14:04:40 +02:00
packages=find_packages(exclude=("tests",)),
2020-05-25 13:21:49 +02:00
include_package_data=True,
2021-10-07 16:19:59 +02:00
install_requires=["click", "pycryptodomex", "mutagen", "requests", "deezer-py>=1.2.5"],
2021-09-21 18:32:20 +02:00
extras_require={
"spotify": ["spotipy>=2.11.0"]
},
2020-05-25 13:21:49 +02:00
entry_points={
"console_scripts": [
"deemix=deemix.__main__:download",
2020-05-25 13:21:49 +02:00
]
},
)