-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.78 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
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agenttop"
version = "0.1.0"
description = "htop for AI coding agents — monitor Claude Code, Cursor, Kiro, Copilot and more"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "Saksham Dutta" }]
keywords = ["ai", "coding-agents", "monitoring", "tui", "claude", "cursor", "kiro"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"textual>=0.85.0",
"textual-plotext>=0.2",
"click>=8.1",
"httpx>=0.27",
"pydantic>=2.0",
"litellm>=1.82,<2.0",
"tomli>=2.0; python_version < '3.11'",
"fastapi>=0.104",
"uvicorn>=0.24",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
"pyright>=1.1",
]
[project.scripts]
agenttop = "agenttop.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/agenttop"]
# Static files are resolved via Path(__file__).parent / "static" in server.py
# force-include is only needed for non-editable installs:
# [tool.hatch.build.targets.wheel.force-include]
# "src/agenttop/web/static" = "agenttop/web/static"
[project.urls]
Homepage = "https://github.com/vicarious11/agenttop"
Repository = "https://github.com/vicarious11/agenttop"
Issues = "https://github.com/vicarious11/agenttop/issues"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]