mirror of
https://github.com/batrachianai/toad
synced 2026-05-24 09:38:33 +00:00
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[project]
|
|
name = "batrachian-toad"
|
|
version = "0.5.7"
|
|
description = "A unified experience for AI in your terminal."
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"textual[syntax]>=6.11.0",
|
|
"click>=8.2.1",
|
|
"gitpython>=3.1.44",
|
|
"tree-sitter>=0.24.0",
|
|
"httpx>=0.28.1",
|
|
"platformdirs>=4.3.8",
|
|
"rich",
|
|
"typeguard>=4.4.4",
|
|
"xdg-base-dirs>=6.0.2",
|
|
"textual-serve>=1.1.2",
|
|
"textual-speedups==0.2.1",
|
|
"packaging>=25.0",
|
|
"bashlex>=0.18",
|
|
"pathspec>=0.12.1",
|
|
"google-re2>=1.1.20251105",
|
|
]
|
|
|
|
[tool.uv.workspace]
|
|
members = [
|
|
"toad",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
#textual-serve = { path = "../textual-serve", editable = true }
|
|
#textual = { path = "../textual", editable = true }
|
|
#textual-dev = { path = "../textual-dev", editable = true }
|
|
#rich = { path = "../rich", editable = true }
|
|
|
|
[project.scripts]
|
|
toad = "toad.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling==1.28.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/toad"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyinstrument>=5.1.1",
|
|
"textual-dev>=1.8.0",
|
|
]
|