From 8d01c762153151d8c5469297a03781ea09529047 Mon Sep 17 00:00:00 2001 From: Andrew Ferrier Date: Wed, 17 Dec 2014 18:45:48 +0000 Subject: [PATCH] Add .gitignore from https://github.com/github/gitignore/blob/master/Python.gitignore --- .gitignore | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c00df13..db4561e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,54 @@ -*.deb +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/