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