22 lines
618 B
Python
22 lines
618 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 = 'desc',
|
|
author = 'author',
|
|
author_email = 'mail',
|
|
url = 'http://wmfs.sangor.net/',
|
|
long_description = '''
|
|
desc long
|
|
''',
|
|
ext_modules = [module1])
|
|
|