setup.py 431 B

12345678910111213141516171819
  1. # coding: utf-8
  2. # python setup.py build
  3. from cx_Freeze import setup, Executable
  4. executables = [Executable('new_interface_demo_2.py')] # название файла должно быть без точки
  5. options = {
  6. 'build_exe': {
  7. 'include_msvcr': True,
  8. }
  9. }
  10. setup(name='demo_interface',
  11. version='0.0.2',
  12. description='My App!',
  13. executables=executables,
  14. options=options)