19 lines
517 B
TOML
19 lines
517 B
TOML
[project]
|
|
name = "finrod"
|
|
version = "0.2.0"
|
|
description = "Translator UI backed by Ollama"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.32",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
# Pin to public PyPI explicitly. Without this, uv inherits whichever index
|
|
# the workstation has configured globally — e.g. the dexterenergy private
|
|
# artifact registry — and bakes it into uv.lock, which 401s inside Docker.
|
|
[[tool.uv.index]]
|
|
name = "pypi"
|
|
url = "https://pypi.org/simple"
|
|
default = true
|