Files
shusub2/pyproject.toml
T
shujakuin fd4e3256d4 feat: reorder first/latency in seconds, add effort column
- logs columns are now Key | Account | Model | Effort | Type | Tokens |
  Cost | First | Latency | Tok/s | Time
- First and Latency render in seconds (5.3s) instead of milliseconds
- Effort shows the request reasoning_effort (- when absent) and is
  filterable; the detail line appends it to the model as model (effort)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-21 11:45:19 +08:00

30 lines
714 B
TOML

[project]
name = "shusub2"
version = "0.2.2"
description = "Terminal UI for Sub2API account quota and daily usage"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Shujakuin" },
]
keywords = ["sub2api", "quota", "tui", "textual", "openai", "anthropic"]
dependencies = [
"textual>=0.89.1",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project.scripts]
shusub2 = "sub2api_quota_tui:main"
sub2api-quota-tui = "sub2api_quota_tui:main"
[project.urls]
Homepage = "https://gitea.shujk.top/shujakuin/shusub2"
Repository = "https://gitea.shujk.top/shujakuin/shusub2"
[tool.setuptools]
py-modules = ["sub2api_quota_tui"]