-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
63 lines (60 loc) · 1.38 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
[project]
name = "tee-gateway"
version = "1.0.0"
description = "OpenGradient TEE-gateway LLM routing service for AWS Nitro Enclaves"
requires-python = ">=3.12,<3.13"
dependencies = [
"connexion[swagger-ui]<3.0.0",
"werkzeug>=2.2.3",
"swagger-ui-bundle>=0.0.2",
"python_dateutil>=2.6.0",
"setuptools>=21.0.0",
"Flask>=3.0.0",
"gunicorn>=23.0.0",
"og-x402[evm]>=0.0.1.dev9",
"fastapi>=0.128.0",
"uvicorn[standard]>=0.40.0",
"pydantic>=2.12.5",
"requests>=2.32.5",
"urllib3>=2.0.0",
"langchain>=1.2.15",
"langchain-core>=1.2.26",
"langchain-openai>=1.1.12",
"langchain-anthropic>=1.4.0",
"langchain-google-genai>=4.2.1",
"langchain-xai>=1.2.2",
"openai>=2.15.0",
"anthropic>=0.76.0",
"google-generativeai>=0.8.6",
"cryptography>=46.0.5",
"eth-hash[pycryptodome]>=0.7.0",
"h2>=4.3.0",
"httpx>=0.28.1",
"httpcore>=1.0.9",
"psutil>=7.2.1",
"python-dotenv>=1.2.1",
"eth-account>=0.13.0",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"ruff>=0.9.1",
]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.24.1",
"python-dotenv>=1.0.0",
]
[tool.ruff]
exclude = [
".claude/worktrees",
".venv",
"venv",
"env",
"scripts/attestation",
"**/site-packages",
]
[tool.uv]
# Pre-release needed for og-test-v2-x402==0.0.11.dev5
prerelease = "allow"