claude-gauge/pyproject.toml
Jeff Smith a683828e6b Initial scaffold
Project skeleton for claude-gauge: a hardware instrument cluster and
companion web dashboard driven by a local Python daemon that tails
~/.claude/projects/**/*.jsonl.

Includes:
- PLAN.md with cluster layout, dashboard sections, architecture,
  metrics brainstorm, and phasing.
- README.md overview.
- Python package scaffold (src/claude_gauge), pyproject.toml
  targeting Python 3.12+ and uv, MIT LICENSE, standard gitignore.

No runtime code yet. Phase A (daemon MVP) will land under the
first issue.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 19:01:30 -06:00

22 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"]