.gitignore 686 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /target
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. .pytest_cache/
  5. *.py[cod]
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. .venv/
  11. env/
  12. bin/
  13. build/
  14. develop-eggs/
  15. dist/
  16. eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. include/
  23. man/
  24. venv/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. # Installer logs
  29. pip-log.txt
  30. pip-delete-this-directory.txt
  31. pip-selfcheck.json
  32. # Unit test / coverage reports
  33. htmlcov/
  34. .tox/
  35. .coverage
  36. .cache
  37. nosetests.xml
  38. coverage.xml
  39. # Translations
  40. *.mo
  41. # Mr Developer
  42. .mr.developer.cfg
  43. .project
  44. .pydevproject
  45. # Rope
  46. .ropeproject
  47. # Django stuff:
  48. *.log
  49. *.pot
  50. .DS_Store
  51. # Sphinx documentation
  52. docs/_build/
  53. # PyCharm
  54. .idea/
  55. # VSCode
  56. .vscode/
  57. # Pyenv
  58. .python-version