Begin implementation of Step 1. Implementation interrupted when I ran out of credits at openrouter. Credits added. Now trying to figure out how to restart the process...

This commit is contained in:
Jim Lancaster
2026-06-24 11:09:02 -05:00
parent bf23893477
commit 5165fa64bc
18 changed files with 592 additions and 108 deletions
+22 -1
View File
@@ -1,7 +1,14 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/transcription"]
[project]
name = "transcription"
version = "0.1.0"
description = "Add your description here"
description = "Historical document transcription system"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
@@ -10,3 +17,17 @@ dependencies = [
"pydantic-settings>=2.9.1",
"sqlmodel>=0.0.25",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.25",
]
[tool.pytest.ini_options]
addopts = "--strict-markers -q"
markers = [
"unit: pure logic tests with no external dependencies",
"integration: tests that touch framework or database contracts",
"external: tests that call external services (slow, requires credentials)",
]