-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (69 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
81 lines (69 loc) · 1.59 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
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "api"
version = "0.77.4"
description = "Agenta API"
authors = [
{ name = "Mahmoud Mabrouk", email = "mahmoud@agenta.ai" },
{ name = "Juan Vega", email = "jp@agenta.ai" }
]
[tool.poetry]
package-mode = false # use pyproject.toml as dependency management and not for packaging
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.11"
# Agenta SDK
agenta = ">=0.72.1"
# Core framework dependencies
fastapi = ">=0.127"
pydantic = "^2"
uvicorn = "^0.40"
gunicorn = "^23"
httpx = "^0.28"
structlog = "^25"
python-dotenv = "^1"
python-multipart = "^0.0.21"
# Database dependencies
sqlalchemy = "^2"
sqlalchemy-utils = "^0.42"
sqlalchemy-json = "^0.7"
asyncpg = "^0.31"
alembic = "^1"
# Data processing
polars = "^1"
orjson = "^3"
jsonschema = "^4"
genson = "^1"
python-jsonpath = "^2"
bson = "^0.5"
uuid-utils = "^0.12"
# caches, channels, streams
taskiq = "^0.12"
taskiq-redis = "^1"
redis = "^7"
cachetools = "^6"
# Integrations & external services
supertokens-python = "^0.29"
openai = "^2"
sendgrid = "^6"
stripe = "^14"
posthog = "^7"
newrelic = "^11"
# Observability (limited - see comment below)
opentelemetry-proto = "^1"
# BLOCKED BY NEW RELIC INCOMPATIBILITY
# opentelemetry-api = "^1"
# opentelemetry-sdk = "^1"
# opentelemetry-exporter-otlp-proto-http = "^1"
# protobuf = "^5"
[tool.poetry.group.dev.dependencies]
watchdog = { extras = ["watchmedo"], version = "^3" }
pytest = "^8"
pytest-asyncio = "^0.21"
faker = "^23"
pexpect = "^4.9"
pytest-xdist = "^3.6"
pytz = "^2024"
pytest-mock = "^3.11"
click = "^8.1"