-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 924 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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gradient-adk"
version = "0.0.8"
description = "Gradient AI Platform Agent Development Kit"
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"typing-extensions>=4.8.0",
"typer>=0.12.0",
"PyYAML>=6.0",
"aiohttp>=3.8.0",
"pytest>=8.4.2",
"pytest-asyncio>=0.21.0",
"structlog>=24.1.0",
"pytest-cov>=7.0.0",
"httpx>=0.26.0",
"requests>=2.32.5",
"pytest-mock>=3.15.1",
"langgraph>=1.0.0",
"gradient>=3.10.1",
]
[project.scripts]
gradient = "gradient_adk.cli:run"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.package-data]
"gradient_adk.cli" = ["templates/*.template"]
[tool.setuptools.packages.find]
include = ["gradient_adk*"]