From b0fe0f0fca8147466ffd9a88b7f4f5f17d7aa7b3 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Tue, 20 Nov 2018 09:35:49 +0100 Subject: [PATCH] Ignore build files etc --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/.gitignore b/.gitignore index 07d35fa..84dbe98 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,45 @@ docs/_build # Mypy Cache .mypy_cache/ +# Temporary and binary files +*~ +*.py[cod] +*.so +*.cfg +!setup.cfg +*.orig +*.log +*.pot +__pycache__/* +.cache/* +.*.swp +*/.ipynb_checkpoints/* + +# Project files +.ropeproject +.project +.pydevproject +.settings +.idea + +# Package files +*.egg +*.eggs/ +.installed.cfg +*.egg-info + +# Unittest and coverage +htmlcov/* +.coverage +.tox +junit.xml +coverage.xml + +# Build and docs folder/files +build/* +dist/* +sdist/* +docs/api/* +docs/_build/* +cover/* +MANIFEST -- GitLab