.gitignore 1.1 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. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  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. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. local_settings.py
  48. # Flask stuff:
  49. instance/
  50. .webassets-cache
  51. # Scrapy stuff:
  52. .scrapy
  53. # Sphinx documentation
  54. docs/_build/
  55. # PyBuilder
  56. target/
  57. # Jupyter Notebook
  58. .ipynb_checkpoints
  59. # pyenv
  60. .python-version
  61. # celery beat schedule file
  62. celerybeat-schedule
  63. # SageMath parsed files
  64. *.sage.py
  65. # Environments
  66. .env
  67. .venv
  68. env/
  69. venv/
  70. ENV/
  71. # Spyder project settings
  72. .spyderproject
  73. .spyproject
  74. # Rope project settings
  75. .ropeproject
  76. # mkdocs documentation
  77. /site
  78. # mypy
  79. .mypy_cache/
  80. # misc
  81. *~
  82. # idea
  83. .idea