Created
January 19, 2016 09:03
-
-
Save david-batranu/5701d4c296b1d1812c27 to your computer and use it in GitHub Desktop.
cython auto compile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, find_packages | |
from setuptools.extension import Extension | |
from Cython.Build import cythonize | |
extensions = [ | |
Extension("my.package.foo.bar.module", ["my/package/foo/bar/module.pyx"]), | |
] | |
setup(name='my.package', ext_modules=cythonize(extensions)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment