devcached/pyproject.toml

35 lines
564 B
TOML

[project]
name = "devcached"
version = "0.1.0"
description = "An extensible caching daemon for CI systems"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests",
# Web service
"fastapi[standard]",
# Config
"pydantic",
"pydantic-yaml",
]
[project.optional-dependencies]
# For Sentry support
sentry = [
"sentry-sdk>=2.28.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.11.6",
"black>=25.1.0",
"mypy>=1.15.0",
"bandit>=1.8.3"
]