.gitignore 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. *.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. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # Misc
  52. _*
  53. *_
  54. *.3gp
  55. *.asf
  56. *.download
  57. *.f4v
  58. *.flv
  59. *.gif
  60. *.html
  61. *.jpg
  62. *.lrc
  63. *.mkv
  64. *.mp3
  65. *.mp4
  66. *.mpg
  67. *.png
  68. *.srt
  69. *.ts
  70. *.webm
  71. *.xml
  72. *.json
  73. /.env
  74. /.idea
  75. *.m4a
  76. *.DS_Store
  77. *.txt
  78. *.sw[a-p]
  79. *.zip
  80. .emacs*
  81. .vscode