Guest User

Untitled

a guest
May 27th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. from distutils.core import setup
  2. from distutils.extension import Extension
  3. from Cython.Distutils import build_ext
  4.  
  5. setup(
  6. name='pybucho',
  7. version='0.0.0',
  8. cmdclass=dict(build_ext=build_ext),
  9. ext_modules=[
  10. Extension('pybucho', ["pybucho.pyx"],
  11. libraries=['bucho']) ]
  12. )
Add Comment
Please, Sign In to add comment