summaryrefslogtreecommitdiffstats
path: root/superkaramba/examples/globalMouse/extension/setup.py
blob: 200333438a42f8845b75c5307761fae7d3d57f95 (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()