|
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
|
|---|
|
|
| .gitignore 0 → 100644 |
|---|
| CONTRIBUTING.md 0 → 100644 |
|---|
| README.md |
|---|
| config/example.json 0 → 100644 |
|---|
| config/local.json 0 → 100644 |
|---|
| data/datasets/.gitkeep 0 → 100644 |
|---|
| data/models/.gitkeep 0 → 100644 |
|---|
| data/runs/.gitkeep 0 → 100644 |
|---|
| data/uploads/.gitkeep 0 → 100644 |
|---|
| pyproject.toml 0 → 100644 |
|---|
| src/sups_yolo/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/api/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/api/app.py 0 → 100644 |
|---|
| src/sups_yolo/camera/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/camera/base.py 0 → 100644 |
|---|
| src/sups_yolo/camera/factory.py 0 → 100644 |
|---|
| src/sups_yolo/camera/fake.py 0 → 100644 |
|---|
| src/sups_yolo/camera/ip.py 0 → 100644 |
|---|
| src/sups_yolo/cli.py 0 → 100644 |
|---|
| src/sups_yolo/core/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/core/channel.py 0 → 100644 |
|---|
| src/sups_yolo/core/event.py 0 → 100644 |
|---|
| src/sups_yolo/data/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/data/store.py 0 → 100644 |
|---|
| src/sups_yolo/models/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/models/detector.py 0 → 100644 |
|---|
| src/sups_yolo/preprocessing/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/preprocessing/pipeline.py 0 → 100644 |
|---|
| src/sups_yolo/training/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/training/pipeline.py 0 → 100644 |
|---|
| src/sups_yolo/web/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/web/static/htmx.min.js 0 → 100644 |
|---|
| src/sups_yolo/web/static/style.css 0 → 100644 |
|---|
| src/sups_yolo/web/templates/index.html 0 → 100644 |
|---|
| tests/__init__.py 0 → 100644 |
|---|
| tests/integration/__init__.py 0 → 100644 |
|---|
| tests/integration/test_api.py 0 → 100644 |
|---|
| tests/unit/test_camera.py 0 → 100644 |
|---|
| tests/unit/test_preprocessing.py 0 → 100644 |
|---|
| tests/unit/test_version.py 0 → 100644 |
|---|