From 66dc50735b5bb11eb9f93b59eef021d8f534c092 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Nov 2025 11:40:58 +0000 Subject: [PATCH] Add .gitignore to ignore Python cache and temporary files --- .gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5415122 --- /dev/null +++ b/.gitignore @@ -0,0 +1,62 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ +test_env/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Manim output +media/ +CASES/ +*.mp4 +*.mov + +# API keys and secrets +.env +*.key +api_config.json + +# Test outputs +*.log +.pytest_cache/ +.coverage +htmlcov/ + +# Temporary files +*.tmp +*.temp +.cache/