From d1d2c91e00c555a0ffe9f6a40a5d73eedb10702d Mon Sep 17 00:00:00 2001 From: ILay Date: Wed, 27 May 2026 10:06:32 +0200 Subject: [PATCH] add .gitignore to exclude Python artifacts, virtual environments, and IDE files --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a5d94c --- /dev/null +++ b/.gitignore @@ -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