.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. dist/
  11. downloads/
  12. eggs/
  13. .eggs/
  14. lib/
  15. lib64/
  16. parts/
  17. sdist/
  18. var/
  19. wheels/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. # PyInstaller
  24. # Usually these files are written by a python script from a template
  25. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  26. *.manifest
  27. *.spec
  28. # Installer logs
  29. pip-log.txt
  30. pip-delete-this-directory.txt
  31. # Unit test / coverage reports
  32. htmlcov/
  33. .tox/
  34. .coverage
  35. .coverage.*
  36. .cache
  37. nosetests.xml
  38. coverage.xml
  39. *.cover
  40. .hypothesis/
  41. .pytest_cache/
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. local_settings.py
  48. db.sqlite3
  49. # Flask stuff:
  50. instance/
  51. .webassets-cache
  52. # Scrapy stuff:
  53. .scrapy
  54. # Sphinx documentation
  55. docs/_build/
  56. # PyBuilder
  57. target/
  58. # Jupyter Notebook
  59. .ipynb_checkpoints
  60. # pyenv
  61. .python-version
  62. # celery beat schedule file
  63. celerybeat-schedule
  64. # SageMath parsed files
  65. *.sage.py
  66. # Environments
  67. .env
  68. .venv
  69. env/
  70. venv/
  71. ENV/
  72. env.bak/
  73. venv.bak/
  74. # Spyder project settings
  75. .spyderproject
  76. .spyproject
  77. # Rope project settings
  78. .ropeproject
  79. # mkdocs documentation
  80. /site
  81. # mypy
  82. .mypy_cache/
  83. .dmypy.json
  84. dmypy.json
  85. # Pyre type checker
  86. .pyre/