-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.18 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
[tool.poetry]
name = "ucloud_sandbox"
version = "1.0.0"
description = "UCloud Sandbox SDK - Cloud sandbox environments for AI agents"
authors = ["UCloud <support@ucloud.cn>"]
license = "MIT"
readme = "README.md"
homepage = "https://ucloud.cn/"
repository = "https://github.com/ucloud/ucloud-sandbox-sdk"
packages = [{ include = "ucloud_sandbox" }, { include = "e2b_connect" }]
[tool.poetry.dependencies]
python = "^3.9"
python-dateutil = ">=2.8.2"
wcmatch = "^10.1"
protobuf = ">=4.21.0"
httpcore = "^1.0.5"
httpx = ">=0.27.0, <1.0.0"
attrs = ">=23.2.0"
packaging = ">=24.1"
typing-extensions = ">=4.1.0"
dockerfile-parse = "^2.0.1"
rich = ">=14.0.0"
requests = "^2.32.3"
pillow = "^11.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-xdist = "^3.3.1"
python-dotenv = "^1.0.0"
pytest-dotenv = "^0.5.2"
pytest-asyncio = "^0.23.7"
pydoc-markdown = "^4.8.2"
datamodel-code-generator = "^0.34.0"
ruff = "^0.11.12"
pytest-timeout = "^2.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ucloud/ucloud-sandbox-sdk/issues"
[tool.ruff]
exclude = [
"ucloud_sandbox/envd/filesystem/filesystem_pb2.py"
]