setup.py 970 B

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env python3
  2. import pathlib
  3. from setuptools import find_packages, setup
  4. HERE = pathlib.Path(__file__).parent
  5. README = (HERE / "README.md").read_text()
  6. setup(
  7. name="deezer-py",
  8. version="0.0.9",
  9. description="A wrapper for all Deezer's APIs",
  10. long_description=README,
  11. long_description_content_type="text/markdown",
  12. author="RemixDev",
  13. author_email="RemixDev64@gmail.com",
  14. license="GPL3",
  15. classifiers=[
  16. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  17. "Development Status :: 4 - Beta",
  18. "Programming Language :: Python :: 3 :: Only",
  19. "Programming Language :: Python :: 3.6",
  20. "Programming Language :: Python :: 3.7",
  21. "Programming Language :: Python :: 3.8",
  22. "Operating System :: OS Independent",
  23. ],
  24. python_requires='>=3.6',
  25. packages=find_packages(exclude=("tests",)),
  26. include_package_data=True,
  27. install_requires=["requests", "eventlet"],
  28. )