setup.py.in 504 B

123456789101112131415161718192021
  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. sys.path.insert(0, os.getcwd())
  5. from distutils.core import setup
  6. from pyrazer import RAZER_VERSION
  7. setup( name = "razercfg",
  8. version = RAZER_VERSION,
  9. description = "Razer device configuration tool",
  10. license = "GNU General Public License v2 or later",
  11. author = "Michael Buesch",
  12. author_email = "m@bues.ch",
  13. url = "https://bues.ch/h/razercfg",
  14. packages = [ "pyrazer", ],
  15. scripts = [ "razercfg",
  16. "qrazercfg",
  17. "qrazercfg-applet", ]
  18. )