setup.py 972 B

123456789101112131415161718192021222324252627282930313233
  1. import pathlib
  2. from setuptools import setup
  3. import setuptools
  4. # The directory containing this file
  5. HERE = pathlib.Path(__file__).parent
  6. # The text of the README file
  7. README = (HERE / "README.md").read_text()
  8. # This call to setup() does all the work
  9. setup(
  10. name="clspotify",
  11. version="0.5.3",
  12. description="A spotify downloader.",
  13. long_description=README,
  14. long_description_content_type="text/markdown",
  15. url="https://github.com/agent255/clspotify.git",
  16. author="hr",
  17. author_email="hemagna.rao@gmail.com",
  18. license="GPLv3",
  19. classifiers=[
  20. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  21. "Programming Language :: Python :: 3.9",
  22. ],
  23. packages=['zspotify'],
  24. install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm',
  25. 'librespot @ https://github.com/kokarare1212/librespot-python/archive/refs/heads/rewrite.zip'],
  26. include_package_data=True,
  27. )