23 lines
451 B
TOML
23 lines
451 B
TOML
|
|
[project]
|
||
|
|
name = "claude-gauge"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Instrument cluster and dashboard for Claude Code session telemetry."
|
||
|
|
readme = "README.md"
|
||
|
|
authors = [
|
||
|
|
{ name = "Jeff Smith", email = "jeff@unbiasedgeek.com" }
|
||
|
|
]
|
||
|
|
requires-python = ">=3.12"
|
||
|
|
dependencies = []
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[dependency-groups]
|
||
|
|
dev = [
|
||
|
|
"pytest>=9.0.3",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|