pyproject.toml•834 B
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-research-mcp"
version = "0.1.0"
description = "MCP server for tracking latest AI/LLM research papers and GitHub repositories"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=0.9.0",
"arxiv>=2.1.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"PyGithub>=2.1.1",
"huggingface-hub>=0.20.0",
"beautifulsoup4>=4.12.0",
"aiohttp>=3.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.scripts]
ai-research-mcp = "ai_research_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"