setup.py 569 B

1234567891011121314151617181920
  1. import setuptools
  2. setuptools.setup(
  3. name="demixed",
  4. version="0.0.1",
  5. author="RemixDevs",
  6. author_email="avysm@riseup.net",
  7. description="The best Python library to destroy the music industry ;)",
  8. url="https://notabug.org/RemixDevs",
  9. packages=setuptools.find_packages(),
  10. classifiers=[
  11. "Programming Language :: Python",
  12. "Programming Language :: Python :: 3",
  13. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  14. "Operating System :: OS Independent",
  15. "Topic :: Multimedia",
  16. "Topic :: Multimedia :: Sound/Audio",
  17. ]
  18. )