2011-09-09 16:46:42 +00:00
|
|
|
from distutils.core import setup, Extension
|
|
|
|
|
|
|
|
module_poopt = Extension('poopt',
|
2011-09-11 18:10:37 +00:00
|
|
|
sources = ['pooptmodule.c'])
|
2011-09-09 16:46:42 +00:00
|
|
|
|
|
|
|
setup (name = 'BuildLines',
|
|
|
|
version = '0.0.1',
|
|
|
|
description = 'Poezio Optimizations',
|
|
|
|
ext_modules = [module_poopt],
|
|
|
|
author = 'Florent Le Coz',
|
|
|
|
author_email = 'louiz@louiz.org',
|
|
|
|
long_description = """
|
2011-10-16 17:34:17 +00:00
|
|
|
a python3 module for poezio, used to replace some time-critical
|
|
|
|
python functions that are too slow. If compiled, poezio will use this module,
|
|
|
|
otherwise it will just use the equivalent python functions.
|
|
|
|
""")
|