From 5ae18553b5e7863261ed64a52ef1653ce3279614 Mon Sep 17 00:00:00 2001 From: Hemang Date: Tue, 4 Feb 2025 15:51:07 +0100 Subject: [PATCH] Add .gitignore --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..da00cf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Python cache and test artifacts +__pycache__/ +.pytest_cache/ +.py[oc] + +# Coverage and build artifacts +.coverage +htmlcov/ +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environment +.venv/ \ No newline at end of file