.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. MANIFEST
  24. # PyInstaller
  25. # Usually these files are written by a python script from a template
  26. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  27. *.manifest
  28. *.spec
  29. # Installer logs
  30. pip-log.txt
  31. pip-delete-this-directory.txt
  32. # Unit test / coverage reports
  33. htmlcov/
  34. .tox/
  35. .coverage
  36. .coverage.*
  37. .cache
  38. nosetests.xml
  39. coverage.xml
  40. *.cover
  41. .hypothesis/
  42. .pytest_cache/
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. local_settings.py
  49. db.sqlite3
  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. # Environments
  68. .env
  69. .venv
  70. env/
  71. venv/
  72. ENV/
  73. env.bak/
  74. venv.bak/
  75. # Spyder project settings
  76. .spyderproject
  77. .spyproject
  78. # Rope project settings
  79. .ropeproject
  80. # mkdocs documentation
  81. /site
  82. # mypy
  83. .mypy_cache/