From 82c554a947b1a62d9890b03c8ccd5cf5d13bdad4 Mon Sep 17 00:00:00 2001 From: Steven Engler Date: Mon, 22 Sep 2025 22:51:22 -0400 Subject: [PATCH] Added `*.egg-info/` to the gitignore file This ignores the `tornettools.egg-info/` directory that's generated when you pip install the 'tornettools' project. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index de665ca..f103308 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ __pycache__ /toolsenv /build +# python build files +*.egg-info/