forked from agentscope-ai/agentscope-bricks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (76 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (76 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "agentscope-bricks"
dynamic = ["version"]
description = "AgentScope-Bricks provides unified API interface for agent development"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Modelstudio Team", email = "zhangzhicheng.zzc@alibaba-inc.com"}
]
license = "Apache-2.0"
keywords = ["python", "Agent", "AIGC", "LLM", "Components"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"agentscope-runtime==0.1.5b2",
"agentscope-runtime[deployment]==0.1.5b2",
"agentscope-runtime[sandbox]==0.1.5b2",
"aiohttp",
"anyio",
"dashscope>=1.24.4",
"dotenv>=0.9.9",
"mcp>=1.14",
"pillow",
"pydantic>=2.10.6",
"typing_extensions",
"jsonref",
"asgiref",
"opentelemetry-api",
"opentelemetry-exporter-otlp",
"opentelemetry-sdk",
"jinja2>=3.1.6",
"instructor==1.7.9",
]
[project.urls]
Homepage = "https://github.com/agentscope-ai/agentscope-bricks"
Repository = "https://github.com/agentscope-ai/agentscope-bricks"
[tool.setuptools]
packages = {find = {where = ["src"]}}
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "agentscope_bricks.version.__version__"}
[tool.black]
line-length = 79
target-version = ['py310']
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pytest-asyncio",
"black",
"pre-commit",
]
agentscope = [
"agentscope>=1.0.0",
]
langgraph = [
"langgraph>=0.4.0",
]
autogen = [
"autogen-agentchat>=0.7.0",
]
alipay = [
"alipay-sdk-python",
"cryptography"
]