-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (61 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ccstory"
version = "0.6.1"
description = "Claude Code usage recap with narrative. ccusage tells you the bill, ccstory tells the story."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "atomchung" }]
keywords = [
"claude",
"claude-code",
"ccusage",
"usage",
"tracking",
"cli",
"recap",
"narrative",
"weekly-report",
"analytics",
"productivity",
"developer-tools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
dependencies = [
"rich>=13.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
]
# <2 is a hard requirement, not conservative padding: the `mcp` SDK is mid
# v1→v2 transition (v2.0.0b2 already out) and v2 renames FastMCP to
# MCPServer with no compat shim, which would break ccstory/mcp_server.py's
# import on sight. Do not widen this without updating that import first.
mcp = [
"mcp>=1.9,<2",
]
[project.urls]
Homepage = "https://github.com/atomchung/ccstory"
Issues = "https://github.com/atomchung/ccstory/issues"
[project.scripts]
ccstory = "ccstory.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["ccstory"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra --strict-markers"