deezer-py/setup.py
2021-12-29 18:26:08 +01:00

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.3.4",
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"],
)