python/setup.py: Fix build on FreeBSD, edit name/desc/etc...
Signed-off-by: Marc Lagrange <marc@shebang.sangor>
This commit is contained in:
parent
7b1c730c80
commit
c8e82eac86
@ -1,21 +1,21 @@
|
|||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
|
|
||||||
module1 = Extension('wmfs',
|
module1 = Extension('wmfs',
|
||||||
#include_dirs = ['/usr/local/include'],
|
include_dirs = ['/usr/local/include'],
|
||||||
libraries = ['X11'],
|
libraries = ['X11'],
|
||||||
#library_dirs = ['/usr/local/lib'],
|
library_dirs = ['/usr/local/lib'],
|
||||||
sources = ['screen_func.c',
|
sources = ['screen_func.c',
|
||||||
'tag_func.c',
|
'tag_func.c',
|
||||||
'libwmfs.c'])
|
'libwmfs.c'])
|
||||||
|
|
||||||
setup (name = 'wmfs',
|
setup (name = 'wmfs',
|
||||||
version = '0.1',
|
version = '0.1',
|
||||||
description = 'desc',
|
description = 'WMFS client library',
|
||||||
author = 'author',
|
author = 'Martin Duquesnoy',
|
||||||
author_email = 'mail',
|
author_email = '',
|
||||||
url = 'http://wmfs.sangor.net/',
|
url = 'http://wmfs.sangor.net/',
|
||||||
long_description = '''
|
long_description = '''
|
||||||
desc long
|
This is a control librarie for the WM named WMFS.
|
||||||
''',
|
''',
|
||||||
ext_modules = [module1])
|
ext_modules = [module1])
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user