diff --git a/.gitignore b/.gitignore index bc9665c2..4615c066 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,112 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +**/__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging build/ +develop-eggs/ dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ *.egg-info/ -**/__pycache__/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.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 +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# Jupyter Notebook +.ipynb_checkpoints +**/notebooks **/.ipynb_checkpoints **/.ipynb_checkpoints/** -**/notebooks +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ -# Ignore shell scripts +# IDEs and editors +.idea/ +.project +.pydevproject +.vscode/ + +# Shell scripts *.sh -# Ignore swap files +# Swap files *.swp +*.swo +*~ -# Ignore vscode directory -.vscode/ +# OS-generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Environment variables +.env +.env.local +.env.development.local +.env.test.local +.env.production.local \ No newline at end of file