26 lines
515 B
TOML
26 lines
515 B
TOML
[project]
|
|
name = "zotero-kb"
|
|
version = "0.1.0"
|
|
description = "Local Zotero knowledge card workspace for agent writing workflows"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.115,<1",
|
|
"uvicorn>=0.30,<1",
|
|
"pydantic>=2.8,<3",
|
|
"jinja2>=3.1,<4",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"httpx>=0.27,<0.28",
|
|
"pytest>=8.3,<9",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|