From d4bc234667057257efcc7ffc622c089146e1c246 Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Sat, 2 Sep 2017 18:06:28 -0400 Subject: [PATCH] Add simple .gitignore file This was suggested by: http://python-packaging.readthedocs.io/en/latest/minimal.html Signed-off-by: David A. Wheeler --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a4d2467 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Ignore some files +# Compiled python modules. +*.pyc + +# Setuptools distribution folder. +/dist/ + +# Python egg metadata, regenerated from source files by setuptools. +/*.egg-info + +# Don't distribute test results, since they get regenerated +/test-results* + +# We may create tarballs, don't include those +/*.tar.gz