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

def main():
	setup(name = 'XMouseCursor',
		  version = '1.0',
		  description = 'Determines the position of the X mouse cursor',
		  ext_modules = [Extension('xcursor', 
		        include_dirs = ['/usr/X11R6/include'],
		        libraries = ['X11'],
		        library_dirs = ['/usr/X11R6/lib'],
		        sources = ['xcursor.c'])])

if __name__ == "__main__":
    main()