-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 945 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
[tool.poetry]
name = "ag2-ext-yepcode"
version = "0.1.0"
description = "An AG2 (formerly Autogen) extension that allows code execution using YepCode's secure serverless runtime"
authors = ["YepCode Developers <developers@yepcode.io>"]
license = "See LICENSE file"
readme = "README.md"
homepage = "https://yepcode.io/"
keywords = ["ag2", "autogen", "autogen-ext", "yepcode", "code-execution", "serverless"]
packages = [{include = "ag2_ext_yepcode", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
ag2 = "^0.9.5"
yepcode-run = "^1.4.0"
python-dotenv = "^1.0.0"
[tool.poetry.extras]
examples = ["ag2", "anthropic"]
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.examples.dependencies]
ag2 = {extras = ["anthropic"], version = "^0.9.5"}
anthropic = "^0.57.1"