[project]
name = "alpaca-mcp-gold-standard"
version = "1.0.0"
description = "Gold standard Alpaca trading MCP server following best practices"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alpaca-py>=0.33.0",
"mcp>=1.0.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pytest>=8.4.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.7.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
[tool.black]
line-length = 88
target-version = ['py312']
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.mypy]
python_version = "3.12"
strict = true
[dependency-groups]
dev = [
"mypy>=1.16.1",
"pandas-stubs>=2.2.3.250527",
"pytest-asyncio>=1.0.0",
"ruff>=0.12.1",
]