File: setup.py

package info (click to toggle)
lodju 2.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 456 kB
  • ctags: 814
  • sloc: python: 4,698; ansic: 139; makefile: 64; sh: 21
file content (35 lines) | stat: -rw-r--r-- 843 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup, Extension

module1 = Extension('_lodju',
                    include_dirs = [
			'/usr/include/pygtk-2.0',
			'/usr/include/gtk-2.0',
			'/usr/lib/gtk-2.0/include',
			'/usr/include/atk-1.0',
			'/usr/include/pango-1.0',
			'/usr/include/freetype2',
			'/usr/X11R6/include',
			'/usr/include/glib-2.0',
			'/usr/lib/glib-2.0/include',
			],
                    libraries = [
			'gtk-x11-2.0',
			'gdk-x11-2.0',
			'atk-1.0',
			'gdk_pixbuf-2.0',
			'm',
			'pangoxft-1.0',
			'pangox-1.0',
			'pango-1.0',
			'gobject-2.0',
			'gmodule-2.0',
			'dl',
			'glib-2.0',
			],
                    library_dirs = ['/usr/local/lib'],
                    sources = ['_lodjumodule.c'])

setup (name = 'Lodju',
       version = '0.0',
       description = 'This is a package for Lodju',
       ext_modules = [module1])