summaryrefslogtreecommitdiffstats
path: root/superkaramba/examples/globalMouse/extension/setup.py
blob: f33f8a64080e5694f233343e3682b333ac094919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup, Extension

module1 = Extension('xcursor', 
		    include_dirs = ['/usr/X11R6/include'],
		    libraries = ['X11'],
		    library_dirs = ['/usr/X11R6/lib'],
		    sources = ['xcursor.c'])

setup (name = 'XMouseCursor',
	version = '1.0',
	description = 'Determines the position of the X mouse cursor',
	ext_modules = [module1])