File size: 575 Bytes
092fd7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "glm-vvr-api"
version = "0.1.0"
description = "OpenAI-compatible GLM visual variable runtime gateway"
requires-python = ">=3.11"
dependencies = [
  "fastapi>=0.115",
  "uvicorn[standard]>=0.30",
  "pydantic>=2.8",
  "pydantic-settings>=2.4",
  "python-multipart>=0.0.9",
  "httpx>=0.27",
  "pillow>=10.4",
  "numpy>=2.0",
  "opencv-python-headless>=4.10",
  "sqlalchemy>=2.0",
]

[project.optional-dependencies]
test = [
  "pytest>=8.3",
  "pytest-asyncio>=0.23",
  "openai>=1.55",
]

[tool.pytest.ini_options]
testpaths = ["../../tests"]
pythonpath = ["."]