Skip to content

Instantly share code, notes, and snippets.

@robertwb
Created August 16, 2016 09:25
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 robertwb/465dce5d31c02ab3b8d82193fe6b54f6 to your computer and use it in GitHub Desktop.
Save robertwb/465dce5d31c02ab3b8d82193fe6b54f6 to your computer and use it in GitHub Desktop.
Attachment setup.py for http://trac.cython.org/ticket/729
#!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
setup(
name = 'Test',
ext_modules = [Extension("mylib", ["mylib.c"])]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment