From bd448d2de92eefc8f9517d23477cadfa3e0f408d Mon Sep 17 00:00:00 2001 From: Martin Laasmaa Date: Fri, 5 Dec 2025 09:41:38 +0200 Subject: [PATCH] Adding .gitignore --- .gitignore | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..01848d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,77 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual Environment +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Project specific +data/detections.db +data/models/* +!data/models/.gitkeep +data/datasets/* +!data/datasets/.gitkeep +data/results/* +!data/results/.gitkeep +logs/*.log +logs/* +!logs/.gitkeep + +# Model files +*.pt +*.pth +*.onnx +*.engine + +# Temporary files +*.tmp +*.bak +.cache/ + +# Jupyter Notebook +.ipynb_checkpoints + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +*.cover +.hypothesis/ + +# Distribution / packaging +.Python +*.manifest +*.spec \ No newline at end of file