forked from volcengine/agentkit-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (98 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
107 lines (98 loc) · 2.53 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "agentkit-sdk-python"
version = "0.4.4"
description = "Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = { file = "LICENSE" }
authors = [
{name = "Xiangrui Cheng", email = "innsdcc@gmail.com"},
{name = "Yumeng Bao", email = "baoyumeng.123@gmail.com"},
{name = "Yaozheng Fang", email = "fangyozheng@gmail.com"},
{name = "Guodong Li", email = "cu.eric.lee@gmail.com"},
]
dependencies = [
"a2a-sdk>=0.3.7",
"fastapi>=0.117.1",
"fastmcp>=2.12.3",
"opentelemetry-api>=1.32.1, <=1.37.0",
"opentelemetry-exporter-otlp-proto-common>=1.32.1, <=1.37.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.32.1, <=1.37.0",
"opentelemetry-sdk>=1.32.1, <=1.37.0",
"pydantic>=2.11.9",
"requests>=2.32.5",
"uvicorn>=0.37.0",
"pyyaml",
"python-dotenv>=1.1.0",
"prompt_toolkit",
"typer",
"rich",
"docker",
"jinja2",
"tos>=2.8.7",
"volcengine",
"pyfiglet>=1.0.2",
"typing_extensions>=4.12",
"pyreadline3; sys_platform == 'win32'",
]
[project.scripts]
agentkit = "agentkit.toolkit.cli.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["agentkit*"]
[tool.setuptools]
include-package-data = true
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
]
toolkit = [
"pyyaml>=6.0.2",
"typer>=0.19.2",
"inquirerpy>=0.3.4",
]
[project.optional-dependencies]
extensions = []
toolkit = []
dev = []
[tool.ruff.lint]
[tool.ruff]
line-length = 88
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"agentkit/toolkit/resources/samples/",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["F401", "F811"]