Initial version of application
This commit is contained in:
32
pyproject.toml
Normal file
32
pyproject.toml
Normal file
@@ -0,0 +1,32 @@
|
||||
[project]
|
||||
name = "audita"
|
||||
version = "0.1.0"
|
||||
description = "Correct audio transcripts with glossary-guided LLM passes."
|
||||
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]
|
||||
audia = "audita.cli:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
pythonpath = ["src"]
|
||||
testpaths = ["tests"]
|
||||
addopts = "-ra"
|
||||
Reference in New Issue
Block a user