feat: bootstrap Python project structure\n\n- pyproject.toml with FastAPI, YOLO, OpenCV, SQLite stack\n- src/sups_yolo modules: camera, preprocessing, models, core, data, training, api, web\n- config/example.json and config/local.json\n- tests/unit and tests/integration with pytest\n- CONTRIBUTING.md, .gitignore, data dirs\n- README tech stack and setup instructions
1 parent 19f3636 commit 65855d16b2b3234f325b1cee7d37b9171905eb25
@Eugene Sukhodolskiy Eugene Sukhodolskiy authored 2 days ago
Showing 40 changed files
View
.gitignore 0 → 100644
View
CONTRIBUTING.md 0 → 100644
View
README.md
View
config/example.json 0 → 100644
View
config/local.json 0 → 100644
View
data/datasets/.gitkeep 0 → 100644
View
data/models/.gitkeep 0 → 100644
View
data/runs/.gitkeep 0 → 100644
View
data/uploads/.gitkeep 0 → 100644
View
pyproject.toml 0 → 100644
View
src/sups_yolo/__init__.py 0 → 100644
View
src/sups_yolo/api/__init__.py 0 → 100644
View
src/sups_yolo/api/app.py 0 → 100644
View
src/sups_yolo/camera/__init__.py 0 → 100644
View
src/sups_yolo/camera/base.py 0 → 100644
View
src/sups_yolo/camera/factory.py 0 → 100644
View
src/sups_yolo/camera/fake.py 0 → 100644
View
src/sups_yolo/camera/ip.py 0 → 100644
View
src/sups_yolo/cli.py 0 → 100644
View
src/sups_yolo/core/__init__.py 0 → 100644
View
src/sups_yolo/core/channel.py 0 → 100644
View
src/sups_yolo/core/event.py 0 → 100644
View
src/sups_yolo/data/__init__.py 0 → 100644
View
src/sups_yolo/data/store.py 0 → 100644
View
src/sups_yolo/models/__init__.py 0 → 100644
View
src/sups_yolo/models/detector.py 0 → 100644
View
src/sups_yolo/preprocessing/__init__.py 0 → 100644
View
src/sups_yolo/preprocessing/pipeline.py 0 → 100644
View
src/sups_yolo/training/__init__.py 0 → 100644
View
src/sups_yolo/training/pipeline.py 0 → 100644
View
src/sups_yolo/web/__init__.py 0 → 100644
View
src/sups_yolo/web/static/htmx.min.js 0 → 100644
View
src/sups_yolo/web/static/style.css 0 → 100644
View
src/sups_yolo/web/templates/index.html 0 → 100644
View
tests/__init__.py 0 → 100644
View
tests/integration/__init__.py 0 → 100644
View
tests/integration/test_api.py 0 → 100644
View
tests/unit/test_camera.py 0 → 100644
View
tests/unit/test_preprocessing.py 0 → 100644
View
tests/unit/test_version.py 0 → 100644