/setup.py
Python | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 33bb8ebd8525bc0b1acc25293847bf06 MD5 | raw file
1from distutils.core import setup, Extension 2 3hw_module = Extension('helloWorld', 4 sources = ['helloWorld.cpp']) 5 6setup (name = 'helloWorld', 7 version = '1.0', 8 description = 'C module test', 9 ext_modules = [hw_module]) 10