From 39253b47fa4e8d16b974fab8542c3d3cd7d1e8bd Mon Sep 17 00:00:00 2001 From: Greg Back Date: Wed, 25 Apr 2018 13:37:47 -0500 Subject: [PATCH] Update .gitignore --- .gitignore | 59 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 52 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 1ae93e9..b6e16fc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -#####=== Python ===##### - # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -10,7 +8,6 @@ __pycache__/ # Distribution / packaging .Python -env/ build/ develop-eggs/ dist/ @@ -22,9 +19,11 @@ lib64/ parts/ sdist/ var/ +wheels/ *.egg-info/ .installed.cfg *.egg +MANIFEST # PyInstaller # Usually these files are written by a python script from a template @@ -44,7 +43,9 @@ htmlcov/ .cache nosetests.xml coverage.xml -*,cover +*.cover +.hypothesis/ +.pytest_cache/ # Translations *.mo @@ -52,6 +53,15 @@ coverage.xml # Django stuff: *.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy # Sphinx documentation docs/_build/ @@ -59,10 +69,45 @@ 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 + +# mypy +.mypy_cache/ + +# ------------------------------ # +# project-specific ignored files # + # Automatically-built grammar tokens *.tokens # PyCharm -.idea/ - -MANIFEST +.idea/ \ No newline at end of file