-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
68 lines (62 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
67
68
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-term"
version = "0.1.0"
description = "Terminal-native Matrix-first ChatOps console for SourceOS multi-agent operations."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "SourceOS-Linux" }
]
keywords = [
"sourceos",
"matrix",
"chatops",
"tui",
"agents",
"mcp",
"agentplane",
"policy-fabric",
"sherlock"
]
classifiers = [
"Development Status :: 2 - Pre-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 :: Communications :: Chat",
"Topic :: Software Development :: User Interfaces"
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4"
]
textual = [
"textual>=0.58"
]
matrix = [
"matrix-nio>=0.24"
]
[project.scripts]
agent-term = "agent_term.cli:main"
agent-term-check = "agent_term.health_cli:main"
agent-term-dispatch = "agent_term.dispatch_cli:main"
agent-term-matrix = "agent_term.matrix_cli:main"
agent-term-smoke = "agent_term.operator_smoke_cli:main"
agent-term-snapshot = "agent_term.snapshot_cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]