Python Application pyzo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. .hypothesis/
  45. .pytest_cache/
  46. # Translations
  47. *.mo
  48. *.pot
  49. # Django stuff:
  50. *.log
  51. local_settings.py
  52. db.sqlite3
  53. # Flask stuff:
  54. instance/
  55. .webassets-cache
  56. # Scrapy stuff:
  57. .scrapy
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/
  62. # Jupyter Notebook
  63. .ipynb_checkpoints
  64. # IPython
  65. profile_default/
  66. ipython_config.py
  67. # pyenv
  68. .python-version
  69. # celery beat schedule file
  70. celerybeat-schedule
  71. # SageMath parsed files
  72. *.sage.py
  73. # Environments
  74. .env
  75. .venv
  76. env/
  77. venv/
  78. ENV/
  79. env.bak/
  80. venv.bak/
  81. # Spyder project settings
  82. .spyderproject
  83. .spyproject
  84. # Rope project settings
  85. .ropeproject
  86. # mkdocs documentation
  87. /site
  88. # mypy
  89. .mypy_cache/
  90. .dmypy.json
  91. dmypy.json
  92. # Pyre type checker
  93. .pyre/
  94. # ---> Backup
  95. *.bak
  96. *.gho
  97. *.ori
  98. *.orig
  99. *.tmp
  100. # ---> Linux
  101. *~
  102. # temporary files which can be created if a process still has a handle open of a deleted file
  103. .fuse_hidden*
  104. # KDE directory preferences
  105. .directory
  106. # Linux trash folder which might appear on any partition or disk
  107. .Trash-*
  108. # .nfs files are created when an open file is removed but is still being accessed
  109. .nfs*
  110. # ---> Eclipse
  111. .metadata
  112. bin/
  113. tmp/
  114. *.tmp
  115. *.bak
  116. *.swp
  117. *~.nib
  118. local.properties
  119. .settings/
  120. .loadpath
  121. .recommenders
  122. # External tool builders
  123. .externalToolBuilders/
  124. # Locally stored "Eclipse launch configurations"
  125. *.launch
  126. # PyDev specific (Python IDE for Eclipse)
  127. *.pydevproject
  128. # CDT-specific (C/C++ Development Tooling)
  129. .cproject
  130. # CDT- autotools
  131. .autotools
  132. # Java annotation processor (APT)
  133. .factorypath
  134. # PDT-specific (PHP Development Tools)
  135. .buildpath
  136. # sbteclipse plugin
  137. .target
  138. # Tern plugin
  139. .tern-project
  140. # TeXlipse plugin
  141. .texlipse
  142. # STS (Spring Tool Suite)
  143. .springBeans
  144. # Code Recommenders
  145. .recommenders/
  146. # Annotation Processing
  147. .apt_generated/
  148. # Scala IDE specific (Scala & Java development for Eclipse)
  149. .cache-main
  150. .scala_dependencies
  151. .worksheet