-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 803 Bytes
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
[project]
name = "openhands-workspace"
version = "1.18.0"
description = "OpenHands Workspace - Docker and container-based workspace implementations"
requires-python = ">=3.12"
dependencies = [
"openhands-sdk",
"openhands-agent-server",
"pydantic>=2.11.7",
]
[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.workspace*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["py.typed"]