-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 988 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hyperterse-sandboxer"
version = "0.1.0"
description = "Unified sandbox client for E2B, Daytona, Blaxel, Runloop, Fly Machines, and local Docker"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"ai-agents",
"agent-sdk",
"automation",
"blaxel",
"ci-cd",
"cloud",
"cloud-sandbox",
"daytona",
"developer-tools",
"devtools",
"docker",
"e2b",
"fly-machines",
"go",
"local-sandbox",
"multi-provider",
"nodejs",
"python",
"remote-sandbox",
"runloop",
"sandbox",
"sandbox-sdk",
"sdk",
"typescript",
"unified-api",
"unified-sdk",
]
requires-python = ">=3.10"
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/sandboxer"]
[tool.ruff]
line-length = 120
target-version = "py310"