From caf463472420870908dac8ff4043c2ac6fa4a9d8 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 30 May 2019 13:37:11 +0200 Subject: [PATCH] Added: .gitignore --- .DS_Store | Bin 0 -> 6148 bytes .gitignore | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 130 insertions(+) create mode 100644 .DS_Store create mode 100644 .gitignore diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..08ba8b176c71d47ca2b89fb471b4ad97787ff62c GIT binary patch literal 6148 zcmeHKJxc>Y5Pf5U1Ok#y%Pp-0Ynvm)!rC7Y%|$S9cowFxyT)Ja570LsDtBICB_cDh z`(}6N&F($8{Qw}#{q`JK0GP2TiaH~v-J?SX5j-V|<*0Fs8uz%vdL+?b?9#Q*x!N@z z@yxYSYjh z=ux8?Uk9;lrlkU@Kq`<5qyj%ufM>SaZ0?wKDv%1K0-p-#{!myHtH93DwhmVI1R&}) z+Kj$lmX%WitH92YBQ$X;(Ww$o3~@U9OT<-youkts@%WIK`Qz~-Haqhd3x`yWS*HT2 zKwp80Hy3*TU-Fk3edPBk*-8acfq$leOjp;dB|j?8)^DGuXKi7*VNuh#P8}Nk-X(wy h-A7Jr(8r7VjH?1WN6n)BMknS)zy!%E75D`O-T}KVL5u(Z literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5568589 --- /dev/null +++ b/.gitignore @@ -0,0 +1,130 @@ + +# Created by https://www.gitignore.io/api/python +# Edit at https://www.gitignore.io/?templates=python + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# 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/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don’t work, or not +# install all needed dependencies. +#Pipfile.lock + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# End of https://www.gitignore.io/api/python