1*8ffe1e44SBrad Bishop# Copyright (c) 2016 GitHub, Inc. 2*8ffe1e44SBrad Bishop# 3*8ffe1e44SBrad Bishop# Permission is hereby granted, free of charge, to any person obtaining a 4*8ffe1e44SBrad Bishop# copy of this software and associated documentation files (the "Software"), 5*8ffe1e44SBrad Bishop# to deal in the Software without restriction, including without limitation 6*8ffe1e44SBrad Bishop# the rights to use, copy, modify, merge, publish, distribute, sublicense, 7*8ffe1e44SBrad Bishop# and/or sell copies of the Software, and to permit persons to whom the 8*8ffe1e44SBrad Bishop# Software is furnished to do so, subject to the following conditions: 9*8ffe1e44SBrad Bishop# 10*8ffe1e44SBrad Bishop# The above copyright notice and this permission notice shall be included in 11*8ffe1e44SBrad Bishop# all copies or substantial portions of the Software. 12*8ffe1e44SBrad Bishop# 13*8ffe1e44SBrad Bishop# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14*8ffe1e44SBrad Bishop# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15*8ffe1e44SBrad Bishop# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16*8ffe1e44SBrad Bishop# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17*8ffe1e44SBrad Bishop# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18*8ffe1e44SBrad Bishop# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19*8ffe1e44SBrad Bishop# DEALINGS IN THE SOFTWARE. 20*8ffe1e44SBrad Bishop 21*8ffe1e44SBrad Bishop# source: https://github.com/github/gitignore/blob/master/Python.gitignore 22*8ffe1e44SBrad Bishop 23*8ffe1e44SBrad Bishop# Byte-compiled / optimized / DLL files 24*8ffe1e44SBrad Bishop__pycache__/ 25*8ffe1e44SBrad Bishop*.py[cod] 26*8ffe1e44SBrad Bishop*$py.class 27*8ffe1e44SBrad Bishop 28*8ffe1e44SBrad Bishop# C extensions 29*8ffe1e44SBrad Bishop*.so 30*8ffe1e44SBrad Bishop 31*8ffe1e44SBrad Bishop# Distribution / packaging 32*8ffe1e44SBrad Bishop.Python 33*8ffe1e44SBrad Bishopenv/ 34*8ffe1e44SBrad Bishopbuild/ 35*8ffe1e44SBrad Bishopdevelop-eggs/ 36*8ffe1e44SBrad Bishopdist/ 37*8ffe1e44SBrad Bishopdownloads/ 38*8ffe1e44SBrad Bishopeggs/ 39*8ffe1e44SBrad Bishop.eggs/ 40*8ffe1e44SBrad Bishoplib/ 41*8ffe1e44SBrad Bishoplib64/ 42*8ffe1e44SBrad Bishopparts/ 43*8ffe1e44SBrad Bishopsdist/ 44*8ffe1e44SBrad Bishopvar/ 45*8ffe1e44SBrad Bishop*.egg-info/ 46*8ffe1e44SBrad Bishop.installed.cfg 47*8ffe1e44SBrad Bishop*.egg 48*8ffe1e44SBrad Bishop 49*8ffe1e44SBrad Bishop# PyInstaller 50*8ffe1e44SBrad Bishop# Usually these files are written by a python script from a template 51*8ffe1e44SBrad Bishop# before PyInstaller builds the exe, so as to inject date/other infos into it. 52*8ffe1e44SBrad Bishop*.manifest 53*8ffe1e44SBrad Bishop*.spec 54*8ffe1e44SBrad Bishop 55*8ffe1e44SBrad Bishop# Installer logs 56*8ffe1e44SBrad Bishoppip-log.txt 57*8ffe1e44SBrad Bishoppip-delete-this-directory.txt 58*8ffe1e44SBrad Bishop 59*8ffe1e44SBrad Bishop# Unit test / coverage reports 60*8ffe1e44SBrad Bishophtmlcov/ 61*8ffe1e44SBrad Bishop.tox/ 62*8ffe1e44SBrad Bishop.coverage 63*8ffe1e44SBrad Bishop.coverage.* 64*8ffe1e44SBrad Bishop.cache 65*8ffe1e44SBrad Bishopnosetests.xml 66*8ffe1e44SBrad Bishopcoverage.xml 67*8ffe1e44SBrad Bishop*,cover 68*8ffe1e44SBrad Bishop.hypothesis/ 69*8ffe1e44SBrad Bishop 70*8ffe1e44SBrad Bishop# Translations 71*8ffe1e44SBrad Bishop*.mo 72*8ffe1e44SBrad Bishop*.pot 73*8ffe1e44SBrad Bishop 74*8ffe1e44SBrad Bishop# Django stuff: 75*8ffe1e44SBrad Bishop*.log 76*8ffe1e44SBrad Bishop 77*8ffe1e44SBrad Bishop# Sphinx documentation 78*8ffe1e44SBrad Bishopdocs/_build/ 79*8ffe1e44SBrad Bishop 80*8ffe1e44SBrad Bishop# PyBuilder 81*8ffe1e44SBrad Bishoptarget/ 82*8ffe1e44SBrad Bishop 83*8ffe1e44SBrad Bishop#Ipython Notebook 84*8ffe1e44SBrad Bishop.ipynb_checkpoints 85*8ffe1e44SBrad Bishop 86*8ffe1e44SBrad Bishop*.swo 87*8ffe1e44SBrad Bishop*.swp 88