From 300805109ecacc39ad1528437643c8794c67f684 Mon Sep 17 00:00:00 2001 From: Dominik Krenn Date: Mon, 30 Jun 2025 10:37:36 +0200 Subject: [PATCH] add .gitignore to exclude build artifacts, bytecode, virtual environments, and system files --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc7b936 --- /dev/null +++ b/.gitignore @@ -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/