From 2610de7f4165e35e25d45cc347ed91e9d61476b9 Mon Sep 17 00:00:00 2001 From: Maicon Berlofa Date: Mon, 6 Apr 2026 01:24:26 -0300 Subject: [PATCH] chore: add .gitignore for Python cache and build artifacts --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4ebf027 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +dist/ +build/ +.eggs/ + +# Virtual environments +.venv/ +venv/ +env/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Testing / Coverage +.pytest_cache/ +.coverage +htmlcov/ + +# Environment +.env +.env.local