-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.01 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
[project]
name = "standard-agent"
version = "0.1.11"
description = "A simple, modular library for building AI agents—with a composable core and plug‑in components."
requires-python = ">=3.11"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", 'NOTICE']
dependencies = [
"jentic>=0.9.5",
"openai>=1.100.2",
"pydantic>=2.0",
"python-dotenv>=1.0.0",
"litellm>=1.74.3",
"google-generativeai",
"structlog",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock",
"ruff",
"mypy",
]
observability = [
"opentelemetry-api>=1.36.0",
"opentelemetry-sdk>=1.36.0",
"opentelemetry-exporter-otlp>=1.36.0",
"opentelemetry-instrumentation>=0.57b0",
]
bedrock = [
"boto3>=1.36.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { where = ["."], include = ["agents*", "utils*"] } }
[tool.setuptools.package-data]
agents = ["prompts/**/*.yaml"]