From c818b118a91706f24d5e8dee981a7b4fbe8db31e Mon Sep 17 00:00:00 2001 From: Geoffrey Martin-Noble Date: Fri, 24 Oct 2025 09:25:15 -0700 Subject: [PATCH] Add .gitignore Taken from https://github.com/github/gitignore. I didn't include everything: just things I think of as commonly used tools. venvs are explicitly called out in the README and vscode is a very common editor (it's what I'm using). Happy to drop the packaging stuff or otherwise make it more targeted. --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..bde797da --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[codz] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Environments +*.venv/ +*.venv.bak/ + +# VSCode +.vscode/ +*.code-workspace