Moved the current implementation to src/audita_prototype, moved current test suite to tests/audita_prototype, and started a new, more modular application skeleton in src/audita

This commit is contained in:
2026-04-24 10:17:38 -05:00
parent 889b620f2e
commit f39de37974
60 changed files with 3034 additions and 664 deletions

View File

@@ -1,7 +1,7 @@
[project]
name = "audita"
version = "0.1.0"
description = "Correct audio transcripts with staged LLM review passes."
version = "0.2.0"
description = "Framework-first audio transcript correction pipeline with an archived prototype."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD-3-Clause" }
@@ -26,6 +26,9 @@ audita = "audita.cli:main"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/audita", "src/audita_prototype"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]