Closed blackHatMonkey closed 6 years ago
@sophron @anakin1028 Do you guys think we can use Extensions from distutils.core to simplify the build?
Extensions
distutils.core
from distutils.core import setup, Extension module1 = Extension('demo', sources = ['demo.c']) setup (name = 'PackageName', version = '1.0', description = 'This is a demo package', ext_modules = [module1])
@sophron @anakin1028 Do you guys think we can use
Extensions
fromdistutils.core
to simplify the build?