-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
31 lines (28 loc) · 891 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-simple-pubmed"
version = "0.1.11"
description = "An MCP server that provides access to PubMed articles through Entrez API."
readme = "README.md"
authors = [
{name = "Andy Brandt", email = "[email protected]"},
{name = "Claude", email = "[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mcp",
"biopython", # for PubMed/Entrez API access
"metapub", # for full-text paper access
"httpx", # for making HTTP requests with async support
]
[project.urls]
Homepage = "https://github.com/andybrandt/mcp-simple-pubmed"
[project.scripts]
mcp-simple-pubmed = "mcp_simple_pubmed:main"