From 13b9dbfcdde6b4efa44496a294f702a32d9a4dac Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Tue, 19 Jan 2016 16:56:02 +0000 Subject: [PATCH] Update .gitignore Source https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore with some modifications. Change-Id: I9eb17bba855381d475a104d222d1c8a803671fb5 --- .gitignore | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 62 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a820604..07d0ed5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,63 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.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/ -.testrepository/ -ekko.egg-info/ -*.pyc -*.swp +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ +.testrepository + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +doc/build/ + +# PyBuilder +target/ + +#Ipython Notebook +.ipynb_checkpoints