-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (57 loc) · 1.49 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
[project]
name = "agentconvos"
version = "0.1.0"
description = "Discover, query, and browse AI coding agent conversations (Claude Code, Codex, Pi, Agy, OpenCode)"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "testy-cool", email = "office@voidxd.ro" }]
keywords = [
"claude-code",
"codex",
"conversation-history",
"cli",
"tui",
"llm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
]
dependencies = [
"httpx>=0.28.1",
"textual>=3.0",
]
[project.urls]
Homepage = "https://github.com/testy-cool/agentconvos"
Repository = "https://github.com/testy-cool/agentconvos"
Issues = "https://github.com/testy-cool/agentconvos/issues"
[project.optional-dependencies]
ai = ["google-genai>=1.0"]
[project.scripts]
agentconvos = "agentconvos.app:main"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"ruff>=0.16.2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/agentconvos"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "B"]