TOML pyproject.toml
[project]
name = "debug-oracle"
version = "0.1.0"
description = "Causal debugging oracle - explains why things broke, not just what broke"
requires-python = ">=3.11"
dependencies = [
"requests",
"rich",
"psutil",
"python-dateutil",
"pydantic",
]
[project.scripts]
oracle = "oracle:main"
[tool.hatch.build.targets.wheel]
packages = ["oracle"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"