From 068b3596e991df58bffdea186a2b6e4826102d54 Mon Sep 17 00:00:00 2001 From: Yashwanth A <123303508+yashwanth2706@users.noreply.github.com> Date: Wed, 12 Nov 2025 07:58:20 +0530 Subject: [PATCH] Add .gitignore file for Python project Added .gitignore file to ignore byte compiled code --- .gitignore | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..98af309 --- /dev/null +++ b/.gitignore @@ -0,0 +1,102 @@ +# Byte-compiled / caches +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Jupyter +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv / poetry +Pipfile.lock +.poetry/ + +# Virtual environments +env/ +venv/ +ENV/ +env.bak/ +.venv/ +venv.bak/ + +# IDEs / editors +.vscode/ +.idea/ +*.sublime-workspace +*.sublime-project + +# Editor temporary files +*~ +*.swp +*.swo + +# Project-specific caches +.mypy_cache/ +.pytype/ +.ruff_cache/ +.pyre/ +.ropeproject/ + +# C extensions +*.so + +# OS files +.DS_Store +Thumbs.db + +# Logs & databases +*.log +*.sql +*.sqlite3 + +# Secrets / env +.env +.env.*