Add compiled modules sources + readme

This commit is contained in:
ColinDuquesnoy
2014-02-18 20:12:30 +01:00
parent 5a706265bc
commit 7aed62cb99
3 changed files with 22 additions and 0 deletions

6
extensions/setup.py Normal file
View File

@@ -0,0 +1,6 @@
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules=cythonize("compiled.pyx")
)