-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1003 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
32
33
34
35
36
37
38
39
40
41
[project]
name = "openhands-tools"
version = "1.17.0"
description = "OpenHands Tools - Runtime tools for AI agents"
requires-python = ">=3.12"
dependencies = [
"openhands-sdk",
"bashlex>=0.18",
"binaryornot>=0.4.4",
"cachetools",
"libtmux>=0.53.0",
"pydantic>=2.11.7",
"browser-use>=0.8.0",
"func-timeout>=4.3.5",
"tom-swe>=1.0.3",
]
[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]
include-package-data = true
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.packages.find]
include = ["openhands.tools*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["py.typed", "**/*.j2"]
"openhands.tools.preset.subagents" = ["*.md"]