This repository has been archived on 2025-12-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
librarian/pyproject.toml

32 lines
576 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "librarian"
version = "0.0.0"
dynamic = ["dependencies"]
[tool.hatch.dependencies]
path = "requirements.txt"
[tool.hatch.build.targets.wheel]
packages = ["src/librarian"]
[tool.hatch.build]
skip-excluded-dirs = true
[tool.hatch.envs.dev]
python = "3.13"
dependencies = [
"coverage[toml]",
"pytest",
"pytest-cov",
"pytest-mock",
]
[tool.jinja-lsp]
templates = "./src/librarian/frontend/templates/"
backend = ["./src/librarian/api/"]
template_extensions = ["j2", "jinja2"]