setup.py 579 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. try:
  3. from setuptools import setup # type: ignore
  4. except ImportError:
  5. from distutils.core import setup
  6. setup(
  7. name="cs2-custom-sounds",
  8. version="2.0.0",
  9. description="Play quake sounds via Gamestate Integration",
  10. python_requires="==3.*,>=3.7.0",
  11. author="kiwec",
  12. license="UNLICENSE",
  13. packages=[],
  14. package_dir={"": "."},
  15. package_data={},
  16. install_requires=[
  17. "aiofiles==0.*,>=0.4.0",
  18. "pyogg==0.6.14a1",
  19. "pyopenal==0.7.11a1",
  20. "attrdict3==2.0.2",
  21. "wxasync==0.48",
  22. ],
  23. )