add .gitignore to exclude Python artifacts, virtual environments, and IDE files

This commit is contained in:
ILay
2026-05-27 10:06:32 +02:00
parent 2e055711a3
commit d1d2c91e00

23
.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
# Python
*.egg-info/
**/__pycache__/
*.pyc
*.pyo
# Virtual environments
.venv/
venv/
env/
# Test & coverage
.pytest_cache/
.coverage
htmlcov/
# UV lock file
uv.lock
# IDE / OS
.idea/
.vscode/
*.DS_Store