-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 765 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aetherion"
version = "0.9.0"
description = "Dev container launcher for AI coding agents"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
# conduit's hermes integration round-trips ~/.hermes/config.yaml, which
# means parsing existing user keys and re-emitting them verbatim. PyYAML
# is the only mature stdlib-shaped YAML library in the ecosystem; we
# keep it as the sole runtime dep on aetherion so the wheel install is
# one extra package, not a tree.
"pyyaml>=6.0",
]
[project.scripts]
aetherion = "aetherion.cli:main"
conduit = "conduit.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/aetherion", "src/conduit"]