-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.24 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperclaw-max"
version = "0.1.0"
description = "Local-first agent distro skeleton with context-intel tooling and layered-memory product direction."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Alessio Lidozzi"}
]
dependencies = []
[project.scripts]
hyperclaw-doctor = "hyperclaw_max.doctor:main"
hyperclaw-privacy-check = "hyperclaw_max.privacy_check:main"
hyperclaw-validate-config = "hyperclaw_max.runtime_validate:main"
hyperclaw-ops-fabric = "hyperclaw_max.ops_fabric.cli:main"
hyperclaw-materialize-pack = "hyperclaw_max.materialize_pack:main"
hyperclaw-first-run = "hyperclaw_max.first_run:main"
hyperclaw-symbol-slice = "hyperclaw_max.context_intel.symbol_slice:main"
hyperclaw-feedback-store = "hyperclaw_max.context_intel.feedback_store:main"
hyperclaw-context-pack = "hyperclaw_max.context_intel.pack:main"
hyperclaw-failure-clinic = "hyperclaw_max.context_intel.clinic:main"
hyperclaw-context-baseline = "hyperclaw_max.context_intel.baseline:main"
hyperclaw-context-scorecard = "hyperclaw_max.context_intel.scorecard:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]