Guest User

Untitled

a guest
Jul 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. from distutils.core import setup, Extension
  2.  
  3. module1 = Extension('xyzzy',
  4. sources = ['xyzzy.c'])
  5.  
  6. setup (name = 'PackageName',
  7. version = '1.0',
  8. description = 'This is a xyzzy package',
  9. ext_modules = [module1])
Add Comment
Please, Sign In to add comment