.gitignore 1.2 KB

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