mirror of
https://gitlab.com/RemixDev/deezer-py.git
synced 2024-12-28 02:16:08 +00:00
30 lines
916 B
Python
30 lines
916 B
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="deezer-py",
|
|
version="1.1.2",
|
|
description="A wrapper for all Deezer's APIs",
|
|
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.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
packages=find_packages(exclude=("tests",)),
|
|
include_package_data=True,
|
|
install_requires=["requests"],
|
|
)
|