summaryrefslogtreecommitdiff
path: root/setup.py
blob: 496d3d7bb6e7c0fbcb368ba76cab0b377bf691f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from distutils.core import setup, Extension

module_poopt = Extension('poopt',
                    sources = ['pooptmodule.c'])

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 = """
       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.
       """)