Update .gitignore to include additional file types and directories for Python projects, enhancing environment management and build artifacts exclusion.

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-20 21:28:16 +02:00
parent 9e5b0f2cc2
commit 7556f3b012
65 changed files with 9165 additions and 7 deletions
+31 -7
View File
@@ -1,11 +1,35 @@
*.pyc
.DS_Store
*.swp
*.swo
*~
Thumbs.db
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.o
build/
dist/
*.egg-info/
*.egg
dist/
build/
.eggs/
*.whl
.venv/
venv/
env/
.env
*.onnx
*.trt
*.engine
.env.*
*.env.local
pip-log.txt
pip-delete-this-directory.txt
.mypy_cache/
.pytest_cache/
.ruff_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.tox/