-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 838 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 838 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
43
44
45
46
47
48
[tool.uv]
package = true
[project]
name = "kin"
version = "0.1.0"
description = "A distributed, durable agent orchestration system."
requires-python = ">=3.12"
dependencies = [
"fastapi",
"uvicorn",
"temporalio",
"redis",
"pydantic",
"pydantic-settings",
"anthropic",
"qdrant-client",
"opentelemetry-api",
"opentelemetry-sdk",
"loguru",
"duckduckgo-search>=8.1.1",
"google-generativeai>=0.8.6",
"google-genai>=1.73.1",
"typer>=0.12.0",
"rich>=15.0.0",
"httpx>=0.28.1",
"groq>=1.2.0",
"ddgs>=9.14.1",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[project.scripts]
kin = "kin.cli:main"
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"flake8",
"black",
"mypy",
]