From aef9be7edc3ba7d1de65d53235cf9841a2d61e48 Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Fri, 11 Apr 2025 23:08:57 -0500 Subject: [PATCH] Fix: Improve .gitignore for Python projects This commit updates the .gitignore file to better suit Python projects by: - Adding common Python-related files and directories to be ignored, such as .env, .pypirc, .pytest_cache, .vscode, __pycache__, dist, build, and firefly_viewer.egg-info. - Removing redundant or less relevant entries. --- .gitignore | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 3f15b64..9283067 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,9 @@ -build -dist +.env +.pypirc +.pytest_cache .venv +.vscode __pycache__ -*.py[cod] -*_pycache_* -*.pyo -*.pyd -*.db -*.sqlite -*.egg-info -*.egg -*.log -*.env -.pypirc \ No newline at end of file +dist +build +firefly_viewer.egg-info \ No newline at end of file