Advertisement
Guest User

Untitled

a guest
May 23rd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. from distutils.core import setup
  2. from Cython.Build import cythonize
  3. import os
  4.  
  5. os.environ["CFLAGS"] = " -Wall -g -framework IOKit"
  6.  
  7. setup(
  8. ext_modules = cythonize(
  9. "motionsensor.pyx"),
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement