deemix-py/setup.py

35 lines
1.1 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",
version="1.1.11",
2020-05-25 13:21:49 +02:00
description="A barebone deezer downloader library",
long_description=README,
long_description_content_type="text/markdown",
url="https://notabug.org/RemixDev/deemix",
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",
2020-05-25 13:21:49 +02:00
"Operating System :: OS Independent",
],
python_requires='>=3.6',
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,
install_requires=["click", "pycryptodomex", "mutagen", "requests", "spotipy>=2.11.0"],
2020-05-25 13:21:49 +02:00
entry_points={
"console_scripts": [
2020-05-25 14:04:40 +02:00
"deemix=deemix.__main__:main",
2020-05-25 13:21:49 +02:00
]
},
)