From 9527e5b4f8522a4c425d4d4ca1a6012e276d35c0 Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Tue, 19 May 2026 15:07:42 +0000 Subject: [PATCH] added gitignore --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f973e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +.Python +*.egg-info/ +*.egg +dist/ +build/ +wheels/ +sdist/ + +# Virtual envs +.venv/ +venv/ +env/ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Ruff / linting +.ruff_cache/ + +# Mypy +.mypy_cache/ + +# Editors +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# ForeignThon compiled output +*.compiled.py + +# Temporary Tests +tmp/**