-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (62 loc) · 2.37 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==83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "loopx"
version = "0.4.8"
description = "A lightweight Loop Engineering control plane for long-running agent goals."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE", "LICENSE-MIT"]
authors = [{ name = "LoopX contributors" }]
dependencies = []
[project.optional-dependencies]
deepseek-harness = [
"deepseek-harness-sdk>=0.1.0rc5",
]
test = [
"jsonschema>=4.23,<5",
"pytest>=8,<9",
"pytest-cov>=5,<7",
"pytest-xdist>=3,<4",
"ruff>=0.12,<0.16",
"mypy>=1.18,<2",
]
[project.scripts]
loopx = "loopx.entrypoint:main"
loopx-lark-provider = "loopx.extensions.lark.provider:main"
loopx-openviking-history-export = "loopx.extensions.openviking_semantic_preference.history_export:main"
loopx-openviking-semantic-preference = "loopx.extensions.openviking_semantic_preference.provider:main"
[tool.setuptools.packages.find]
include = ["loopx*"]
[tool.setuptools.package-data]
"loopx.capabilities.auto_research" = ["worker_skill/SKILL.md"]
"loopx.capabilities.content_ops" = ["templates/*.json"]
"loopx.extensions.lark" = ["extension.toml"]
"loopx.extensions.openviking_periodic_report" = ["extension.toml"]
"loopx.extensions.openviking_semantic_preference" = ["extension.toml"]
"loopx.opencode_goal_mode" = ["*.js", "*.mjs", "README.md"]
"loopx.opencode2_goal_mode" = ["*.mjs", "README.md"]
"loopx.pi_goal_mode" = ["*.ts", "*.mjs", "README.md"]
[tool.mypy]
python_version = "3.11"
strict = true
files = [
"loopx/claude_goal_baseline.py",
"loopx/benchmarks/read_models/benchmark_run_execution_contract.py",
"loopx/benchmarks/read_models/benchmark_run_failure.py",
"loopx/control_plane/__init__.py",
"loopx/control_plane/quota/effect_program.py",
"loopx/control_plane/quota/states.py",
"loopx/control_plane/runtime/active_user_assisted_pilot.py",
"loopx/control_plane/runtime/event_store_migration_bridge.py",
"loopx/control_plane/runtime/time.py",
"loopx/control_plane/runtime/trajectory_hygiene.py",
"loopx/control_plane/scheduler/time.py",
"loopx/control_plane/work_items/delivery_batch_scale.py",
"loopx/control_plane/work_items/delivery_outcome.py",
"loopx/control_plane/work_items/lifecycle.py",
"loopx/presentation/renderers/trajectory_hygiene_markdown.py",
"loopx/presentation/renderers/turn_envelope_markdown.py",
]