-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 1.31 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
[project]
name = "orcastraight-command-agent"
version = "0.1.0"
description = "OrcaStraight Command Agent — governed work-orchestration prototype (OrcaStraight case study)"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.6",
"langgraph>=0.2",
"langchain>=0.2",
"anthropic>=0.40",
"openai>=1.40",
"python-dotenv>=1.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.5", "braintrust>=0.0.150", "wandb>=0.17", "httpx>=0.27"]
# Flat multi-package layout: one importable package per workstream directory.
# Declared explicitly so `pip install -e .` does not fail on setuptools'
# multi-top-level-package auto-discovery. The `*` globs pick up any subpackages
# a workstream adds later (e.g. verification.rules) without touching this file.
[tool.setuptools.packages.find]
where = ["."]
include = [
"core*", "fixtures*", "context*", "brief*", "actions*",
"corpus*", "verification*", "lifecycle*", "telemetry*",
"evals*", "recipes*", "api*",
]
exclude = ["tests*", "frontend*", "prompts*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
pythonpath = ["."]
# Don't descend into the vendored frontend (Bun/Vite app, no Python tests there).
norecursedirs = ["frontend", "node_modules", ".*", "build", "dist", "*.egg"]