58 lines
1.3 KiB
TOML
58 lines
1.3 KiB
TOML
[project]
|
|
name = "ml-knowledge-platform"
|
|
version = "0.3.0"
|
|
description = "Knowledge verification TUI and KV API client with local LLM support"
|
|
authors = [{ name = "Lilith Collective" }]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.11"
|
|
license = "Apache-2.0"
|
|
dependencies = [
|
|
"textual[syntax]==0.79.1",
|
|
"sqlmodel>=0.0.9",
|
|
"humanize>=4.6.0",
|
|
"click>=8.1.6",
|
|
"xdg-base-dirs>=6.0.1",
|
|
"aiosqlite>=0.20.0",
|
|
"click-default-group>=1.2.4",
|
|
"greenlet>=3.0.3",
|
|
"pyperclip>=1.8.2",
|
|
"litellm>=1.37.19",
|
|
"pydantic>=2.9.0",
|
|
"httpx>=0.27.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
knowledge-platform = "knowledge_platform.__main__:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
managed = true
|
|
dev-dependencies = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
"textual-dev>=1.0.1",
|
|
]
|
|
extra-index-url = ["https://forge.nasty.sh/api/packages/lilith/pypi/simple/"]
|
|
native-tls = true
|
|
|
|
[tool.lilith]
|
|
registry = "forgejo"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["knowledge_platform"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
src = ["knowledge_platform"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM", "RUF", "PTH"]
|
|
ignore = ["E501"]
|