forked from forthfate/openorbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openorbit"
version = "0.8.0"
description = "Open control plane for recurring AI automations"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
authors = [{ name = "OpenOrbit Contributors" }]
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"PyYAML>=6.0",
"opentelemetry-api>=1.28",
"opentelemetry-sdk>=1.28",
"langgraph>=0.2",
"requests>=2.31",
"pywinpty>=2.0; sys_platform == 'win32'",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "httpx>=0.27", "ruff>=0.6", "pre-commit>=3.0"]
docs = ["mkdocs-material>=9.6", "mkdocstrings[python]>=0.28"]
[project.scripts]
orbit = "orbit.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["orbit", "backend/app"]
include = ["orbit/resources/**/*.yaml", "orbit/resources/**/*.json", "orbit/resources/**/*.md"]
# The API serves this pre-built SPA itself, so a wheel installed from PyPI does
# not need Node.js at runtime. Build it with `pnpm run build` before creating
# a release artifact; that command also generates the bundled SDK docs site.
[tool.hatch.build.targets.wheel.force-include]
"frontend/dist" = "frontend/dist"
"site" = "site"
"backend/orbit_sdk.py" = "orbit_sdk.py"
[tool.hatch.build.hooks.custom]
[tool.pytest.ini_options]
testpaths = ["tests", "backend/tests"]
[tool.ruff]
target-version = "py313"
line-length = 110
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"] # Embedded runner scripts and manager prompt schemas intentionally retain long lines.