setup.py 219 B

12345678910111213
  1. from setuptools import setup,Extension
  2. setup(
  3. ext_modules=[
  4. Extension(
  5. name='PyModuleCommModule',
  6. sources=['PyModuleCommModule.py']
  7. )
  8. ]
  9. )
  10. #python3 setup.py build_ext --inplace