[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "mcp-scholaris" version = "0.1.0" description = "An MCP server for retrieving academic papers from open access sources" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.13" authors = [{ name = "Jason Parker", email = "penny4nonsense@gmail.com" }] keywords = ["mcp", "academic", "papers", "arxiv", "semantic-scholar", "pubmed"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.13", ] dependencies = [ "httpx>=0.27", "pymupdf>=1.24", "python-dotenv>=1.0", ] [project.scripts] scholaris = "scholaris.server:main" [tool.hatch.build.targets.wheel] packages = ["src/scholaris"]