29 lines
560 B
TOML
29 lines
560 B
TOML
[project]
|
|
name = "openrpc-server-1"
|
|
version = "0.1.0"
|
|
description = "Example openrpc server"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.104.0",
|
|
"uvicorn[standard]>=0.24.0",
|
|
"pydantic>=2.5.0",
|
|
"httpx>=0.25.0",
|
|
"fastapi-mcp>=0.1.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"python-multipart>=0.0.6",
|
|
"jinja2>=3.1.2",
|
|
"click>=8.1.0",
|
|
"openrpc>=10.4.0"
|
|
]
|
|
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"black>=23.0.0",
|
|
"isort>=5.12.0",
|
|
"mypy>=1.7.0",
|
|
]
|