Add top-level README, .gitignore, and per-component directories (recording, labeling backend/frontend, training, inference, control) with READMEs and pyproject.toml/package skeletons per CLAUDE.md §2-3. No implementation yet, just structure to build against. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
14 lines
334 B
TOML
14 lines
334 B
TOML
[project]
|
|
name = "spelunkai-labeling-backend"
|
|
version = "0.0.0"
|
|
description = "SpelunkAI Labeling Tool backend: API + data model for bounding-box labels"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|