From 0bbd56121c173102508286368b3f6ce2b29fa98a Mon Sep 17 00:00:00 2001 From: agatha Date: Fri, 14 Jun 2024 13:57:52 -0400 Subject: [PATCH] update .gitignore --- .gitignore | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 109 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4b6fd94..f9e8e3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,111 @@ -.idea/ -venv/ +# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] +*$py.class + +# Virtual environment directories +venv/ +ENV/ +env/ +.venv/ +.ENV/ + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +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 +.coverage +.tox/ +.nox/ +.cache/ +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# dotenv +.env +.env.* + +# Virtual machine file +*.vagrant + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# pyre type checker's configurations +.pyre/ + +# Sublime Text Bookmarks +*.sublime-workspace + +# VSCode +.vscode/ + +# Local .env file for project settings +.env + +# PyCharm +.idea/ + +# MacOS files +.DS_Store + +# Windows thumbnail cache +Thumbs.db + +# Elasticsearch files +elasticsearch.log \ No newline at end of file