pyproject.toml•705 B
[project]
name = "mcp-server-aact"
version = "0.4.0"
description = "MCP server for AACT clinical trials database"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.12.4",
"psycopg2-binary",
"python-dotenv"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
[tool.uv]
dev-dependencies = [
"pyright>=1.1.389",
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
]
[project.scripts]
mcp-server-aact = "src:main"
[tool.hatch.build.targets.wheel]
packages = ["src"]