-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.62 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "relai"
requires-python = ">=3.10"
authors = [
{name = "RELAI", email = "priyatham@relai.ai"},
{name = "RELAI", email = "wwx@relai.ai"},
]
description = "An SDK for building reliable AI agents"
readme = "README.md"
license = {file = "LICENSE.md" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pydantic>=2.11.5",
"numpy>=1.26.4",
"aiohttp[speedups]>=3.12.15",
"httpx>=0.28.1",
"openai-agents[litellm]>=0.6.2",
"opentelemetry-instrumentation>=0.58b0",
"openinference-instrumentation>=0.1.38",
"tenacity>=9.1.2",
]
version = "0.3.30"
[tool.setuptools.packages.find]
where = ["."]
include = ["relai*"]
[dependency-groups]
dev = [
"build>=1.3.0",
"google-genai>=1.45.0",
"langchain>=1.0.1",
"langgraph>=1.0.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.14",
"mkdocstrings[python]>=0.29.1",
"openai>=1.102.0",
"openai-agents[litellm]>=0.6.2",
"openinference-instrumentation-openai-agents>=1.3.0",
"pytest>=8.3.5",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.3.0",
"pytest-mock>=3.15.0",
"responses>=0.25.7",
"ruff>=0.11.11",
"ty>=0.0.24",
]
[tool.ty.analysis]
allowed-unresolved-imports = ["IPython"]
[[tool.ty.overrides]]
include = ["notebooks/**"]
[tool.ty.overrides.rules]
all = "ignore"