.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib64/
  16. parts/
  17. sdist/
  18. var/
  19. wheels/
  20. pip-wheel-metadata/
  21. share/python-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. *.py,cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. db.sqlite3-journal
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # IPython
  67. profile_default/
  68. ipython_config.py
  69. # pyenv
  70. .python-version
  71. # pipenv
  72. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  73. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  74. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  75. # install all needed dependencies.
  76. #Pipfile.lock
  77. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  78. __pypackages__/
  79. # Celery stuff
  80. celerybeat-schedule
  81. celerybeat.pid
  82. # SageMath parsed files
  83. *.sage.py
  84. # Environments
  85. .env
  86. .venv
  87. env/
  88. venv/
  89. ENV/
  90. env.bak/
  91. venv.bak/
  92. # Spyder project settings
  93. .spyderproject
  94. .spyproject
  95. # Rope project settings
  96. .ropeproject
  97. # mkdocs documentation
  98. /site
  99. # mypy
  100. .mypy_cache/
  101. .dmypy.json
  102. dmypy.json
  103. # Pyre type checker
  104. .pyre/
  105. *pyscript*