From d08bc6d439b14ae0762906f519c462b4ce8c3cf0 Mon Sep 17 00:00:00 2001 From: jorenham Date: Sat, 30 Nov 2024 21:21:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=99=88=20Add=20a=20minimal=20`.gitignore`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..159dc32 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +build/ +dist/ +site/ + +# Cache +.cache/ +.mypy_cache/ +.pytest_cache/ +.ruff_cache/ +.tox/ + +# Environments +.env +.venv/ +venv/ + +# IntelliJ +.idea/ +.run/