Skip to content

Instantly share code, notes, and snippets.

@nwiizo
Created September 4, 2016 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nwiizo/fe1bc6ca5c4e7d86313ff4a204972323 to your computer and use it in GitHub Desktop.
Save nwiizo/fe1bc6ca5c4e7d86313ff4a204972323 to your computer and use it in GitHub Desktop.
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
ext_modules = [Extension("hello", ["hello.pyx"])]
setup(
name = 'Hello world app',
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment