.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Python template
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. .idea
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. pip-wheel-metadata/
  25. share/python-wheels/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. MANIFEST
  30. # PyInstaller
  31. # Usually these files are written by a python script from a template
  32. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  33. *.manifest
  34. *.spec
  35. # Installer logs
  36. pip-log.txt
  37. pip-delete-this-directory.txt
  38. # Unit test / coverage reports
  39. htmlcov/
  40. .tox/
  41. .nox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *.cover
  48. *.py,cover
  49. .hypothesis/
  50. .pytest_cache/
  51. cover/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. db.sqlite3
  59. db.sqlite3-journal
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. .pybuilder/
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # IPython
  73. profile_default/
  74. ipython_config.py
  75. # pyenv
  76. # For a library or package, you might want to ignore these files since the code is
  77. # intended to run in multiple environments; otherwise, check them in:
  78. # .python-version
  79. # pipenv
  80. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  81. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  82. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  83. # install all needed dependencies.
  84. #Pipfile.lock
  85. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  86. __pypackages__/
  87. # Celery stuff
  88. celerybeat-schedule
  89. celerybeat.pid
  90. # SageMath parsed files
  91. *.sage.py
  92. # Environments
  93. .env
  94. .venv
  95. env/
  96. venv/
  97. ENV/
  98. env.bak/
  99. venv.bak/
  100. # Spyder project settings
  101. .spyderproject
  102. .spyproject
  103. # Rope project settings
  104. .ropeproject
  105. # mkdocs documentation
  106. /site
  107. # mypy
  108. .mypy_cache/
  109. .dmypy.json
  110. dmypy.json
  111. # Pyre type checker
  112. .pyre/
  113. # pytype static type analyzer
  114. .pytype/
  115. # Cython debug symbols
  116. cython_debug/
  117. ### Java template
  118. # Compiled class file
  119. *.class
  120. # Log file
  121. *.log
  122. # BlueJ files
  123. *.ctxt
  124. # Mobile Tools for Java (J2ME)
  125. .mtj.tmp/
  126. # Package Files #
  127. *.jar
  128. *.war
  129. *.nar
  130. *.ear
  131. *.zip
  132. *.tar.gz
  133. *.rar
  134. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  135. hs_err_pid*