build_all_examples.py 277 B

1234567891011121314
  1. import os
  2. import nsist
  3. example_cfgs = [
  4. 'console/installer.cfg',
  5. 'pyqt/installer.cfg',
  6. 'tkinter/installer.cfg',
  7. ]
  8. examples_dir = os.path.dirname(os.path.abspath(__file__))
  9. for example_cfg in example_cfgs:
  10. os.chdir(examples_dir)
  11. nsist.main([example_cfg])