bookmark/pyproject.toml

20 lines
393 B
TOML

[project]
name = "bookmark"
version = "0.1.0"
description = "Book intake and checkout inventory system for Books in Hand"
requires-python = ">=3.11"
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 = ["."]