-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "runtimeuse-client"
version = "0.5.0"
description = "Client library for AI agent runtime communication over WebSocket"
readme = "README.md"
license = {"text" = "FSL"}
requires-python = ">=3.10"
keywords = ["ai", "agent", "runtime", "websocket", "sandbox"]
dependencies = [
"pydantic>=2.0",
"websockets>=12.0",
]
[project.urls]
Homepage = "https://github.com/getlark/runtimeuse"
Repository = "https://github.com/getlark/runtimeuse"
Issues = "https://github.com/getlark/runtimeuse/issues"
[project.optional-dependencies]
dev = [
"boto3",
"daytona",
"e2b",
"e2b-code-interpreter",
]
[tool.hatch.build.targets.wheel]
packages = ["src/runtimeuse_client"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
log_cli = true
log_cli_level = "INFO"
markers = [
"e2e: end-to-end tests requiring a running runtimeuse server",
"sandbox: sandbox provider integration tests (requires E2B_API_KEY)",
"llm: real LLM integration tests (requires E2B_API_KEY + LLM API keys)",
]