From e0d223d1174fd0c4551c4aec1c5c5316dd6fad77 Mon Sep 17 00:00:00 2001 From: fangyh20 Date: Sat, 12 Apr 2025 07:35:53 -0700 Subject: [PATCH] Add .gitignore file to exclude common Python, IDE, and environment files (#109) --- .gitignore | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..589329e --- /dev/null +++ b/.gitignore @@ -0,0 +1,99 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +ENV/ +env/ +.env +.venv +env.bak/ +venv.bak/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store + +# Testing +.coverage +htmlcov/ +.tox/ +.nox/ +.pytest_cache/ +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Jupyter Notebook +.ipynb_checkpoints + +# Logs +*.log +logs/ +log/ + +# Local development settings +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Google Cloud specific +.gcloudignore +.gcloudignore.local + +# Documentation +docs/_build/ +site/ + +# Misc +.DS_Store +Thumbs.db +*.bak +*.tmp +*.temp \ No newline at end of file