aboutsummaryrefslogtreecommitdiffstats
path: root/ui/setup.py.in
blob: dd5d7a6d5dc0d01e2df32da65f2b93efefeb765e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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		= "https://bues.ch/h/razercfg",
	packages	= [ "pyrazer", ],
	scripts		= [ "razercfg",
			    "qrazercfg",
			    "qrazercfg-applet", ]
)
bues.ch cgit interface