diff --git a/.gitignore b/.gitignore index 82dfd8e..21e5235 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,31 @@ -# Debugging notebooks -*.ipynb - -# VSCode -.vscode/ - -# Byte-compiled / optimized / DLL files -__pycache__/ +# Python related *.py[cod] *$py.class - -# C extensions *.so - -# Distribution / packaging +__pycache__/ +*.egg-info/ +*.egg .Python +celerybeat-schedule +*.sage.py +local_settings.py + +# Jupyter Notebook +*.ipynb +.ipynb_checkpoints + +# Virtual Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +.python-version + +# Packaging build/ -develop-eggs/ dist/ downloads/ eggs/ @@ -26,22 +36,10 @@ parts/ sdist/ var/ 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 +# Testing htmlcov/ .tox/ .coverage @@ -53,58 +51,58 @@ coverage.xml .hypothesis/ .pytest_cache/ -# Translations -*.mo -*.pot +# Documentation +docs/_build/ +/site -# Django stuff: -*.log -local_settings.py +# IDEs and Editors +.vscode/ +.idea/ +.spyderproject +.spyproject +.ropeproject +.mypy_cache/ + +# Databases db.sqlite3 -# Flask stuff: +# Flask instance/ .webassets-cache -# Scrapy stuff: -.scrapy +# Django +*.log -# Sphinx documentation -docs/_build/ +# Scrapy +.scrapy # PyBuilder target/ -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version +# OS generated files +.DS_Store +Thumbs.db -# celery beat schedule file -celerybeat-schedule +# Vim +*.swp -# SageMath parsed files -*.sage.py +# Secrets +.secrets +.env.local -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject +# Installer logs +pip-log.txt +pip-delete-this-directory.txt -# Rope project settings -.ropeproject +# PyInstaller +*.manifest +*.spec -# mkdocs documentation -/site +# Translations +*.mo +*.pot -# mypy -.mypy_cache/ +# Dependency Management +poetry.lock +Pipfile +Pipfile.lock