From 940eb64a4a05c4565acc2f3b71934bd3edca366b Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Mon, 18 May 2020 20:27:41 +0200 Subject: [PATCH] .gitignore byte-compiled and packaging files Installing the package generated byte-compiled (__pycache__) files and packaging file (*.egg-info). Ignore them in git. Cf. https://github.com/github/gitignore/blob/master/Python.gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c882b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +*.egg-info/