-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.17 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
[project]
name = "openhands-agent-server"
version = "1.17.0"
description = "OpenHands Agent Server - REST/WebSocket interface for OpenHands AI Agent"
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.19",
"alembic>=1.13",
"docker>=7.1,<8",
"fastapi>=0.104",
"openhands-sdk",
"pydantic>=2",
"sqlalchemy>=2",
"uvicorn>=0.31.1",
"websockets>=12",
"wsproto>=1.2.0",
]
[project.urls]
Source = "https://github.com/OpenHands/software-agent-sdk"
Homepage = "https://github.com/OpenHands/software-agent-sdk"
Documentation = "https://docs.openhands.dev/sdk"
"Bug Tracker" = "https://github.com/OpenHands/software-agent-sdk/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.packages.find]
include = ["openhands.agent_server*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["py.typed"]
# Include Docker-related files and VSCode extensions
"openhands.agent_server" = [
"docker/Dockerfile",
"docker/wallpaper.svg",
"vscode_extensions/**/*.json",
"vscode_extensions/**/*.js",
]
[project.scripts]
agent-server = "openhands.agent_server.__main__:main"