-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 932 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 932 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
[project]
name = "workflow-sequential"
version = "0.1.0"
description = "Basic worflow agent for educational implementation purposes."
authors = [
{ name = "Tommy Wagner", email = "wagnerthomas@google.com" }
]
license = { text = "Apache License 2.0" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"google-adk>=1.5.0,<2.0.0",
"google-cloud-aiplatform[adk,agent-engines]>=1.100.0,<2.0.0",
"python-dotenv>=1.1.1,<2.0.0",
"google-cloud-secret-manager>=2.24.0,<3.0.0",
]
[dependency-groups]
dev = [
"google-adk>=1.5.0,<2.0.0",
]
deployment = [
"absl-py>=2.2.2",
"google-cloud-aiplatform[adk,agent-engines]>=1.100.0",
]
[tool.ruff]
extend = "../../../pyproject.toml"
[tool.ruff.lint.isort]
known-first-party = ["workflow-sequential"]
[tool.agent-starter-pack.settings]
agent_directory = "workflow-sequential"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"