wmfs/python/setup.py
Marc Lagrange c8e82eac86 python/setup.py: Fix build on FreeBSD, edit name/desc/etc...
Signed-off-by: Marc Lagrange <marc@shebang.sangor>
2009-01-07 15:40:13 +01:00

22 lines
677 B
Python

from distutils.core import setup, Extension
module1 = Extension('wmfs',
include_dirs = ['/usr/local/include'],
libraries = ['X11'],
library_dirs = ['/usr/local/lib'],
sources = ['screen_func.c',
'tag_func.c',
'libwmfs.c'])
setup (name = 'wmfs',
version = '0.1',
description = 'WMFS client library',
author = 'Martin Duquesnoy',
author_email = '',
url = 'http://wmfs.sangor.net/',
long_description = '''
This is a control librarie for the WM named WMFS.
''',
ext_modules = [module1])