.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. .idea/
  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. pip-wheel-metadata/
  23. share/python-wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. MANIFEST
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .nox/# Byte-compiled / optimized / DLL files
  40. __pycache__/
  41. *.py[cod]
  42. *$py.class
  43. # C extensions
  44. *.so
  45. # Distribution / packaging
  46. .Python
  47. build/
  48. develop-eggs/
  49. dist/
  50. downloads/
  51. eggs/
  52. .eggs/
  53. lib/
  54. lib64/
  55. parts/
  56. sdist/
  57. var/
  58. wheels/
  59. pip-wheel-metadata/
  60. share/python-wheels/
  61. *.egg-info/
  62. .installed.cfg
  63. *.egg
  64. MANIFEST
  65. # PyInstaller
  66. # Usually these files are written by a python script from a template
  67. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  68. *.manifest
  69. *.spec
  70. # Installer logs
  71. pip-log.txt
  72. pip-delete-this-directory.txt
  73. # Unit test / coverage reports
  74. htmlcov/
  75. .tox/
  76. .nox/
  77. .coverage
  78. .coverage.*
  79. .cache
  80. nosetests.xml
  81. coverage.xml
  82. *.cover
  83. .hypothesis/
  84. .pytest_cache/
  85. # Translations
  86. *.mo
  87. *.pot
  88. # Django stuff:
  89. *.log
  90. local_settings.py
  91. db.sqlite3
  92. db.sqlite3-journal
  93. # Flask stuff:
  94. instance/
  95. .webassets-cache
  96. # Scrapy stuff:
  97. .scrapy
  98. # Sphinx documentation
  99. docs/_build/
  100. # PyBuilder
  101. target/
  102. # Jupyter Notebook
  103. .ipynb_checkpoints
  104. # IPython
  105. profile_default/
  106. ipython_config.py
  107. # pyenv
  108. .python-version
  109. # pipenv
  110. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  111. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  112. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  113. # install all needed dependencies.
  114. #Pipfile.lock
  115. # celery beat schedule file
  116. celerybeat-schedule
  117. # SageMath parsed files
  118. *.sage.py
  119. # Environments
  120. .env
  121. .venv
  122. env/
  123. venv/
  124. ENV/
  125. env.bak/
  126. venv.bak/
  127. # Spyder project settings
  128. .spyderproject
  129. .spyproject
  130. # Rope project settings
  131. .ropeproject
  132. # mkdocs documentation
  133. /site
  134. # mypy
  135. .mypy_cache/
  136. .dmypy.json
  137. dmypy.json
  138. # Pyre type checker
  139. .pyre/
  140. .coverage
  141. .coverage.*
  142. .cache
  143. nosetests.xml
  144. coverage.xml
  145. *.cover
  146. .hypothesis/
  147. .pytest_cache/
  148. # Translations
  149. *.mo
  150. *.pot
  151. # Django stuff:
  152. *.log
  153. local_settings.py
  154. db.sqlite3
  155. db.sqlite3-journal
  156. # Flask stuff:
  157. instance/
  158. .webassets-cache
  159. # Scrapy stuff:
  160. .scrapy
  161. # Sphinx documentation
  162. docs/_build/
  163. # PyBuilder
  164. target/
  165. # Jupyter Notebook
  166. .ipynb_checkpoints
  167. # IPython
  168. profile_default/
  169. ipython_config.py
  170. # pyenv
  171. .python-version
  172. # pipenv
  173. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  174. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  175. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  176. # install all needed dependencies.
  177. #Pipfile.lock
  178. # celery beat schedule file
  179. celerybeat-schedule
  180. # SageMath parsed files
  181. *.sage.py
  182. # Environments
  183. .env
  184. .venv
  185. env/
  186. venv/
  187. ENV/
  188. env.bak/
  189. venv.bak/
  190. # Spyder project settings
  191. .spyderproject
  192. .spyproject
  193. # Rope project settings
  194. .ropeproject
  195. # mkdocs documentation
  196. /site
  197. # mypy
  198. .mypy_cache/
  199. .dmypy.json
  200. dmypy.json
  201. # Pyre type checker
  202. .pyre/