-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "claude-token-tracker"
version = "2.0.0"
description = "Persistent analytics over your local Claude Code logs: per-project / per-model / per-tool spend, 5-hour block forecasts, budgets, and a Linux GTK dashboard."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Statotech Systems" }, { name = "Ebenworks" }]
keywords = ["claude", "anthropic", "claude-code", "tokens", "usage", "tracker"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
]
# Pure-stdlib for the lib + CLI. The GUI needs PyGObject + GTK3 system
# packages — install them via your distro (see README) since they don't
# ship as wheels.
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7"]
[project.scripts]
ctt = "cct.cli:main"
claude-token-tracker = "cct.gui:run"
[project.urls]
Homepage = "https://github.com/StaticB1/claude_ai_usage_widget"
Repository = "https://github.com/StaticB1/claude_ai_usage_widget"
Issues = "https://github.com/StaticB1/claude_ai_usage_widget/issues"
[tool.setuptools.packages.find]
include = ["cct*"]
[tool.pytest.ini_options]
testpaths = ["tests"]