deemix-py/setup.py

36 lines
1.0 KiB
Python
Raw Normal View History

2020-05-29 17:19:57 +00:00
#!/usr/bin/env python3
2020-05-25 11:21:49 +00:00
import pathlib
2020-05-25 12:04:40 +00:00
from setuptools import find_packages, setup
2020-05-25 11:21:49 +00:00
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="deemix",
2022-01-11 16:03:53 +00:00
version="3.6.6",
2020-05-25 11:21:49 +00: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 11:21:49 +00:00
"Operating System :: OS Independent",
],
python_requires='>=3.7',
2020-05-25 12:04:40 +00:00
packages=find_packages(exclude=("tests",)),
2020-05-25 11:21:49 +00:00
include_package_data=True,
2021-12-23 18:02:33 +00:00
install_requires=["click", "pycryptodomex", "mutagen", "requests", "deezer-py>=1.3.0"],
2021-09-21 16:32:20 +00:00
extras_require={
"spotify": ["spotipy>=2.11.0"]
},
2020-05-25 11:21:49 +00:00
entry_points={
"console_scripts": [
"deemix=deemix.__main__:download",
2020-05-25 11:21:49 +00:00
]
},
)