bookmark/pyproject.toml
pyr0ball df63ffa846 chore: add MIT LICENSE and CONTRIBUTING.md, set SPDX license in pyproject
Bookmark is fully open source (donated to Books in Hand nonprofit, no
BSL tiering). Adds an MIT LICENSE file, a CONTRIBUTING.md scoped to an
early-stage volunteer project, and a PEP 639 license field in
pyproject.toml. Repo description and topics were also updated via the
Forgejo API for discoverability.
2026-07-13 10:17:05 -07:00

21 lines
409 B
TOML

[project]
name = "bookmark"
version = "0.1.0"
description = "Book intake and checkout inventory system for Books in Hand"
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"opencv-python>=4.9",
"numpy>=1.26",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"httpx>=0.27",
]
[tool.pytest.ini_options]
pythonpath = ["."]