forked from bozdemir/claude-usage-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "claude-usage-widget"
dynamic = ["version"]
description = "Desktop widget and CLI that shows real-time Claude Code usage limits and cost."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Burak" }]
keywords = ["claude", "anthropic", "usage", "rate-limit", "widget"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
]
# Two small, pure-pip runtime dependencies — no system libraries (no apt /
# brew / PyGObject / rumps): PySide6-Essentials bundles Qt, and certifi
# provides a CA bundle so HTTPS verification works on macOS python.org
# builds (which don't trust the system keychain). Notifications use the
# platform's built-in CLI (notify-send on Linux, osascript on macOS).
dependencies = [
"PySide6-Essentials>=6.5,<7",
"certifi>=2023.7.22",
]
[project.urls]
Homepage = "https://github.com/bozdemir/claude-usage-widget"
Issues = "https://github.com/bozdemir/claude-usage-widget/issues"
[project.scripts]
claude-usage = "claude_usage.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["claude_usage*"]
[tool.setuptools.dynamic]
version = { attr = "claude_usage.__version__" }
[tool.setuptools.package-data]
claude_usage = ["py.typed", "icons/*.svg"]