and that file…
This commit is contained in:
parent
fa5b5fc45d
commit
d26845e2a3
1 changed files with 16 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from distutils.core import setup, Extension
|
||||
|
||||
module_poopt = Extension('poopt',
|
||||
sources = ['src/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.
|
||||
""")
|
Loading…
Reference in a new issue