[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arxiv-mcp-server"
version = "0.3.1"
description = "A flexible arXiv search and analysis service with MCP protocol support"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = []
dependencies = [
"arxiv>=2.1.0",
"python-dateutil>=2.8.2",
"pydantic>=2.8.0",
"mcp>=1.2.0",
"pymupdf4llm>=0.0.17",
"python-dotenv>=1.0.0",
"pydantic-settings>=2.1.0",
"aiofiles>=23.2.1",
"anyio>=4.2.0",
]
[project.optional-dependencies]
dev = [
"black>=23.3.0"
]
[project.scripts]
arxiv-mcp-server = "arxiv_mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/arxiv_mcp_server"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 88
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''