Created
August 18, 2014 12:57
-
-
Save phillipberndt/207d109cd345c054ef57 to your computer and use it in GitHub Desktop.
Cython test (For SO question 25141838)
This file contains 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
#!/usr/bin/env python | |
from distutils.core import setup | |
from Cython.Build import cythonize | |
setup( | |
ext_modules = cythonize("test.pyx") | |
) |
This file contains 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
def test(): | |
return "Ok" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment