2 from distutils
.core
import setup
, Extension
4 module1
= Extension('calfpytools',
6 sources
= ['calfpytools.cpp', 'ttl.cpp'],
7 extra_compile_args
= ["-g"],
8 extra_link_args
= ["-g"]
11 setup (name
= 'CalfPyTools',
13 description
= 'Calf Python Tools',
14 ext_modules
= [module1
])