valid_config_with_commands.cfg 492 B

123456789101112131415161718192021222324252627
  1. [Application]
  2. name=My App
  3. version=1.0
  4. # How to launch the app - this calls the 'main' function from the 'myapp' package:
  5. entry_point=myapp:main
  6. icon=myapp.ico
  7. [Python]
  8. version=3.4.0
  9. [Include]
  10. # Importable packages that your application requires, one per line
  11. packages = requests
  12. bs4
  13. html5lib
  14. # Other files and folders that should be installed
  15. files = LICENSE
  16. data_files/
  17. [Command foo]
  18. entry_point=foo:foo
  19. extra_preamble=/foo
  20. [Command bar]
  21. entry_point=bar:bar
  22. console=false