From 1576953d15a1fee64ec73b947839212026c36e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=C2=A0Le=C5=9Bniewski?= Date: Wed, 24 Nov 2021 22:04:11 +0100 Subject: [PATCH] Add .gitignore --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab85c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# general things to ignore +build/ +dist/ +venv/ +*.egg-info/ +*.egg +*.py[cod] +__pycache__/ +*.so +*~ + +# due to using tox and pytest +.tox +.cache