-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 811 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
[tool.poetry]
name = "e2b-desktop"
version = "2.3.0"
description = "E2B Desktop Sandbox - Deskstop sandbox in cloud powered by E2B"
authors = ["e2b <hello@e2b.dev>"]
license = "MIT"
readme = "README.md"
homepage = "https://e2b.dev/"
repository = "https://github.com/e2b-dev/desktop/tree/main/packages/python-sdk"
packages = [{ include = "e2b_desktop" }]
[tool.poetry.dependencies]
python = "^3.10"
e2b = "^2.6.0"
requests = "^2.32.3"
pillow = "^12.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.0"
python-dotenv = "^1.0.0"
pytest-dotenv = "^0.5.2"
pytest-xdist = "^3.6.1"
ruff = "^0.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/e2b-dev/desktop/issues"
[tool.ruff.lint]
ignore = ["F401", "F403"]