/setup.py
http://github.com/sushantkhurana/Python-C-Extension · Python · 10 lines · 7 code · 3 blank · 0 comment · 0 complexity · 33bb8ebd8525bc0b1acc25293847bf06 MD5 · raw file
- from distutils.core import setup, Extension
- hw_module = Extension('helloWorld',
- sources = ['helloWorld.cpp'])
- setup (name = 'helloWorld',
- version = '1.0',
- description = 'C module test',
- ext_modules = [hw_module])