Move python implementation under python/ in preparation for the upcoming Go rewrite
This commit is contained in:
35
python/pyproject.toml
Normal file
35
python/pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user