Move python implementation under python/ in preparation for the upcoming Go rewrite

This commit is contained in:
2026-05-10 22:37:38 +00:00
parent e797e3d9ff
commit 2e47c8a1b6
47 changed files with 0 additions and 0 deletions

35
python/pyproject.toml Normal file
View File

@@ -0,0 +1,35 @@
[project]
name = "audita"
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" }
dependencies = [
"instructor>=1.7",
"openai>=1.55",
"pydantic>=2.8",
"PyYAML>=6.0",
"tiktoken>=0.8",
"eval-type-backport>=0.2.0; python_version < '3.10'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[project.scripts]
audita = "audita.cli:main"
[build-system]
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"]
addopts = "-ra"