From 750bc36b46a0aad49082e373e100c4ef8da48bc2 Mon Sep 17 00:00:00 2001 From: OwusuBlessing Date: Thu, 24 Jul 2025 14:40:34 +0100 Subject: [PATCH] updated ignore file --- .gitignore | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/.gitignore b/.gitignore index e69de29..0a106be 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,84 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Virtual environments +venv/ +env/ +.venv/ +.env/ +ENV/ +.Python + +# Environment variables +.env +.env.* + +# Distribution / packaging +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Logs and local databases +*.log +*.pot +*.sqlite3 + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +coverage.xml +*.cover +.cache +nosetests.xml +pytest_cache/ +test-results/ + +# Jupyter Notebook +.ipynb_checkpoints + +# PyCharm +.idea/ + +# VS Code +.vscode/ + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# Pylint +pylint-report.txt + +# Mac OS +.DS_Store + +# Backup files +*.bak +*.swp +*~ + +# Profiling data +profiler.log