Files
audita/pyproject.toml

36 lines
744 B
TOML

[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"