forked from simonw/claude-code-transcripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 947 Bytes
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
[project]
name = "cc-transcripts"
version = "0.4.1"
description = "Convert Claude Code session files to HTML transcripts"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Simon Willison" },
{ name = "Toby Backstrom" }
]
requires-python = ">=3.10"
dependencies = [
"click",
"click-default-group",
"httpx",
"jinja2",
"markdown",
"questionary",
]
[project.urls]
Homepage = "https://github.com/TobyBackstrom/claude-code-transcripts"
Changelog = "https://github.com/TobyBackstrom/claude-code-transcripts/releases"
Issues = "https://github.com/TobyBackstrom/claude-code-transcripts/issues"
CI = "https://github.com/TobyBackstrom/claude-code-transcripts/actions"
[project.scripts]
cc-transcripts = "cc_transcripts:main"
[build-system]
requires = ["uv_build>=0.9.7,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-httpx>=0.35.0",
"syrupy>=5.0.0",
]