From cb9749010fa3f8fb866bd66bda0b9081c9342b14 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Mon, 20 Oct 2025 17:12:33 +0200 Subject: [PATCH] Initial project structure --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitignore b/.gitignore index c035e55..ebc2e6c 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,25 @@ env/ # github instruction files .github/instructions/ + +# Python packaging artifacts +build/ +dist/ +*.egg-info/ +pip-wheel-metadata/ + +# Test artifacts +.coverage +coverage.xml +htmlcov/ +.pytest_cache/ + +# Mypy cache +.mypy_cache/ + +# Logs +*.log +logs/ + +# SQLite database +*.sqlite3