35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
#!/usr/bin/env python3
|
|
import pathlib
|
|
from setuptools import find_packages, setup
|
|
|
|
HERE = pathlib.Path(__file__).parent
|
|
README = (HERE / "README.md").read_text()
|
|
|
|
setup(
|
|
name="deemix",
|
|
version="1.5.19",
|
|
description="A barebone deezer downloader library",
|
|
long_description=README,
|
|
long_description_content_type="text/markdown",
|
|
url="https://deemix.app",
|
|
author="RemixDev",
|
|
author_email="RemixDev64@gmail.com",
|
|
license="GPL3",
|
|
classifiers=[
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
packages=find_packages(exclude=("tests",)),
|
|
include_package_data=True,
|
|
install_requires=["click", "pycryptodomex", "mutagen", "requests", "spotipy>=2.11.0", "eventlet"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"deemix=deemix.__main__:download",
|
|
]
|
|
},
|
|
)
|