-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 1.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "agno-opensandbox-toolkit"
version = "0.1.0"
description = "OpenSandbox support for the Agno agent framework"
readme = "README.md"
authors = [
{ name = "Valeryi Savich", email = "relrin78@gmail.com" }
]
requires-python = ">=3.10,<4"
keywords = ["agno", "opensandbox", "sandbox", "ai-agent", "toolkit"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"agno==2.5.16",
"opensandbox==0.1.7",
]
[project.optional-dependencies]
code-interpreter = [
"opensandbox-code-interpreter==0.1.2",
]
[build-system]
requires = ["uv_build>=0.10.12,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"mypy==1.20.0",
"pytest===9.0.3",
"pytest-asyncio==1.3.0",
"pytest-cov==7.1.0",
"respx==0.23.1",
"ruff==0.15.10",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: requires a running OpenSandbox server (deselect with '-m not integration')",
"e2e: end-to-end tests requiring LLM API key + OpenSandbox server",
]
[tool.ruff]
target-version = "py310"
line-length = 120
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
packages = ["agno_opensandbox_toolkit"]
mypy_path = "src"