mirror of
https://github.com/blazickjp/arxiv-mcp-server.git
synced 2025-07-25 20:38:49 +03:00
42 lines
948 B
TOML
42 lines
948 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "arxiv-mcp-server"
|
|
version = "0.2.2"
|
|
description = "A flexible arXiv search and analysis service with MCP protocol support"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "Joseph Blazick", email = "blazickjp@amazon.com" }
|
|
]
|
|
dependencies = [
|
|
"arxiv>=2.1.0",
|
|
"httpx>=0.24.0",
|
|
"python-dateutil>=2.8.2",
|
|
"pydantic>=2.8.0",
|
|
"mcp>=1.0.0",
|
|
"aiohttp>=3.9.1",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"aiofiles>=23.2.1"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.5",
|
|
"pytest-cov>=4.1.0",
|
|
"pytest-mock>=3.10.0",
|
|
"aioresponses>=0.7.6"
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
addopts = "-v --cov=arxiv_mcp_server"
|
|
|
|
[project.scripts]
|
|
arxiv-mcp-server = "arxiv_mcp_server:main" |