-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 2.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "roundtable"
version = "0.1.0"
description = "A council of frontier models — for the decisions that matter. (a Frontier Infra project)"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Frontier Infra" }]
keywords = ["llm", "ai", "council", "deliberation", "cli", "mcp", "claude", "grok", "gemini", "openai"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
# No runtime deps: the engine is bash + python3 stdlib only.
dependencies = []
[project.scripts]
roundtable = "roundtable_cli:main"
[project.urls]
Homepage = "https://roundtable.sh"
Repository = "https://github.com/frontier-infra/roundtable"
Issues = "https://github.com/frontier-infra/roundtable/issues"
# ---------------------------------------------------------------------------
# Bundle the bash engine. The repo-root bin/ and lib/ dirs are sibling-owned
# (built by other workers); force-include copies them into the package as
# data, preserving the bin/ + lib/ sibling layout under _engine/ so the
# dispatcher's relative `../lib` lookup keeps working once installed.
#
# The Claude Code skill (canonical source: plugins/roundtable/skills/roundtable/
# SKILL.md) is also force-included as _engine/skill/SKILL.md so `roundtable
# install` can drop it; lib/install.sh resolves it at <engine>/skill/SKILL.md.
# ---------------------------------------------------------------------------
[tool.hatch.build.targets.wheel]
packages = ["roundtable_cli"]
[tool.hatch.build.targets.wheel.force-include]
"bin" = "roundtable_cli/_engine/bin"
"lib" = "roundtable_cli/_engine/lib"
"plugins/roundtable/skills/roundtable/SKILL.md" = "roundtable_cli/_engine/skill/SKILL.md"
[tool.hatch.build.targets.sdist]
include = [
"/roundtable_cli",
"/bin",
"/lib",
"/plugins",
"/.claude-plugin",
"/README.md",
"/AGENTS.md",
"/LICENSE",
]