41 lines
920 B
TOML
41 lines
920 B
TOML
[tool.poetry]
|
|
name = "e2b"
|
|
version = "0.3.0"
|
|
description = "E2B SDK that give agents cloud environments"
|
|
authors = ["e2b <hello@e2b.dev>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://e2b.dev/"
|
|
repository = "https://github.com/e2b-dev/e2b/tree/main/packages/python-sdk"
|
|
packages = [{ include = "e2b" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
urllib3 = ">= 1.25.3"
|
|
python-dateutil = ">=2.8.2"
|
|
aiohttp = ">= 3.8.4"
|
|
pydantic = "^1.10.5, <2"
|
|
aenum = ">=3.1.11"
|
|
websockets = "^11.0.3"
|
|
jsonrpcclient = "^4.0.3"
|
|
janus = "^1.0.0"
|
|
async-timeout = "^4.0.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.7.0"
|
|
pytest = "^7.4.0"
|
|
pytest-xdist = "^3.3.1"
|
|
pytest-asyncio = "^0.21.1"
|
|
psycopg2 = "^2.9.7"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/e2b-dev/e2b/issues"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|