.gitignore 2.4 KB

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