#!/usr/bin/env python3 from distutils.core 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 = "http://bues.ch/cms/hacking/razercfg.html", packages = [ "pyrazer", ], scripts = [ "razercfg", "qrazercfg", ] )