.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .idea
  2. .idea/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  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. # pyenv
  65. .python-version
  66. # celery beat schedule file
  67. celerybeat-schedule
  68. # SageMath parsed files
  69. *.sage.py
  70. # Environments
  71. .env
  72. .venv
  73. env/
  74. venv/
  75. ENV/
  76. env.bak/
  77. venv.bak/
  78. # Spyder project settings
  79. .spyderproject
  80. .spyproject
  81. # Rope project settings
  82. .ropeproject
  83. # mkdocs documentation
  84. /site
  85. # mypy
  86. .mypy_cache/