From: Malte Bublitz Date: Mon, 23 Nov 2020 20:54:08 +0000 (+0100) Subject: Added Python .gitignore X-Git-Url: https://git.rt3x.de/?a=commitdiff_plain;h=0ea298b52b4bc8d63d56be987b73d2d5c8554fec;p=bbs.git Added Python .gitignore --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1da7042 --- /dev/null +++ b/.gitignore @@ -0,0 +1,110 @@ +# +# .gitignore +# Generic Python variant +# + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# Distribution / packaging +.Python +env/ +venv/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# C extensions +*.so + +# 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 +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# 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 + +# Vim swap files +*.sw[po] + +# HTML files (which are only rendered versions +# of Markdown files) +*.html +