pyproject.toml•1.53 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
include = [
"main.py",
"scraper.py",
]
[project]
name = "huggingface-daily-paper-mcp"
version = "0.1.4"
description = "A MCP server for fetching HuggingFace daily papers"
authors = [
{ name = "huangxinping", email = "monor.huang@gmail.com" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["mcp", "huggingface", "papers", "server", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"beautifulsoup4>=4.13.5",
"lxml>=6.0.1",
"mcp>=1.13.1",
"requests>=2.32.5",
"pydantic>=2.0.0",
]
[project.scripts]
huggingface-daily-paper-mcp = "main:cli"
[project.urls]
Homepage = "https://github.com/huangxinping/huggingface-daily-paper-mcp"
Repository = "https://github.com/huangxinping/huggingface-daily-paper-mcp.git"
Issues = "https://github.com/huangxinping/huggingface-daily-paper-mcp/issues"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"build>=1.0.0",
"twine>=4.0.0",
]