diff options
Diffstat (limited to 'conf/gitignore/Python')
-rw-r--r-- | conf/gitignore/Python | 60 |
1 files changed, 41 insertions, 19 deletions
diff --git a/conf/gitignore/Python b/conf/gitignore/Python index ded6067880..a65d04669c 100644 --- a/conf/gitignore/Python +++ b/conf/gitignore/Python @@ -1,36 +1,58 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ *.py[cod] +*$py.class # C extensions *.so -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ .installed.cfg -lib -lib64 -__pycache__ +*.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 -.tox +.coverage.* +.cache nosetests.xml +coverage.xml +*,cover # Translations *.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ -# Mr Developer -.mr.developer.cfg -.project -.pydevproject +# PyBuilder +target/ |