ccusage 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ccusage-0.1.4 → ccusage-0.1.6}/PKG-INFO +3 -1
- {ccusage-0.1.4 → ccusage-0.1.6}/pyproject.toml +5 -1
- ccusage-0.1.6/src/ccusage/__main__.py +2 -0
- {ccusage-0.1.4 → ccusage-0.1.6}/uv.lock +1 -1
- {ccusage-0.1.4 → ccusage-0.1.6}/.github/workflows/publish.yml +0 -0
- {ccusage-0.1.4 → ccusage-0.1.6}/.gitignore +0 -0
- {ccusage-0.1.4 → ccusage-0.1.6}/.python-version +0 -0
- {ccusage-0.1.4 → ccusage-0.1.6}/README.md +0 -0
- {ccusage-0.1.4 → ccusage-0.1.6}/src/ccusage/__init__.py +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ccusage
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Claude Code usage monitor — fetches rate limits from Anthropic's API
|
|
5
|
+
Project-URL: Homepage, https://github.com/wakamex/ccusage
|
|
6
|
+
Project-URL: Source, https://github.com/wakamex/ccusage
|
|
5
7
|
Requires-Python: >=3.12
|
|
6
8
|
Description-Content-Type: text/markdown
|
|
7
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ccusage"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.6"
|
|
4
4
|
description = "Claude Code usage monitor — fetches rate limits from Anthropic's API"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -13,5 +13,9 @@ package = true
|
|
|
13
13
|
requires = ["hatchling"]
|
|
14
14
|
build-backend = "hatchling.build"
|
|
15
15
|
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/wakamex/ccusage"
|
|
18
|
+
Source = "https://github.com/wakamex/ccusage"
|
|
19
|
+
|
|
16
20
|
[project.scripts]
|
|
17
21
|
ccusage = "ccusage:main"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|