From cd8deb55aa374b7ad234758b85f58b91521654c5 Mon Sep 17 00:00:00 2001 From: Sigurd Borge Date: Wed, 25 Sep 2024 16:12:34 +0200 Subject: [PATCH] Updated .gitignore to remove some build caching and organize a bit better --- .gitignore | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index bea1349f..d7b1e88a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,30 @@ -.vscode +# Some categories and items copied from https://github.com/github/gitignore/blob/main/Python.gitignore + +# Byte-compiled / optimized / DLL files __pycache__ -**.ipynb -.idea -venv -.venv/ -.env +# Distribution / packaging +.Python +build/ +dist/ +sdist/ +*.egg-info/ + +# Unit test / coverage reports .coverage coverage.xml -AntaresWebDesktop/ .tox/ +# Environments +.env +.venv +env/ +venv/ + +# Jupyter notebooks +**.ipynb + +# Other +.vscode +.idea +AntaresWebDesktop/