valid_config_with_shortcut.cfg 519 B

123456789101112131415161718192021222324
  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. [Shortcut IPython Notebook]
  18. entry_point=IPython.html.notebookapp:launch_new_instance
  19. icon=scripts/ipython_nb.ico
  20. console=true