add .gitignore to exclude build artifacts, bytecode, virtual environments, and system files

This commit is contained in:
Dominik Krenn 2025-06-30 10:37:36 +02:00
parent b637bdd7b6
commit 300805109e

19
.gitignore vendored Normal file
View File

@ -0,0 +1,19 @@
# Build artifacts
dist/
build/
*.egg-info/
# Python bytecode
__pycache__/
*.py[cod]
# Virtual environments
venv/
.env/
# System files
.DS_Store
Thumbs.db
# VS Code
.vscode/