30 lines
590 B
TOML
30 lines
590 B
TOML
[project]
|
|
name = "mcp-alpaca"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"option-mcp-common",
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.30",
|
|
"httpx>=0.27",
|
|
"pydantic>=2.6",
|
|
"alpaca-py>=0.32",
|
|
"pytz>=2024.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8", "pytest-asyncio>=0.23"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcp_alpaca"]
|
|
|
|
[tool.uv.sources]
|
|
option-mcp-common = { workspace = true }
|
|
|
|
[project.scripts]
|
|
mcp-alpaca = "mcp_alpaca.__main__:main"
|