.gitignore 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # ---> Venv
  2. .venv
  3. .env
  4. # ---> Vim
  5. [._]*.s[a-w][a-z]
  6. [._]s[a-w][a-z]
  7. *.un~
  8. Session.vim
  9. .netrwhist
  10. *~
  11. # ---> Python
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # C extensions
  17. *.so
  18. # Distribution / packaging
  19. .Python
  20. env/
  21. build/
  22. develop-eggs/
  23. dist/
  24. downloads/
  25. eggs/
  26. .eggs/
  27. lib/
  28. lib64/
  29. parts/
  30. sdist/
  31. var/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. # PyInstaller
  36. # Usually these files are written by a python script from a template
  37. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  38. *.manifest
  39. *.spec
  40. # Installer logs
  41. pip-log.txt
  42. pip-delete-this-directory.txt
  43. # Unit test / coverage reports
  44. htmlcov/
  45. .tox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *,cover
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. # Sphinx documentation
  58. docs/_build/
  59. # PyBuilder
  60. target/