Add simple .gitignore file

This was suggested by:
http://python-packaging.readthedocs.io/en/latest/minimal.html

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2017-09-02 18:06:28 -04:00
parent 23e8cee364
commit d4bc234667
1 changed files with 15 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -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