-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.49 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "opentargets-mcp"
version = "0.5.0"
description = "MCP server for Open Targets Platform biomedical data access"
authors = [{name = "Nick Ren"}]
license = {text = "MIT"}
readme = "README.md"
keywords = ["mcp", "open-targets", "biomedical", "drug-discovery", "genetics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"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 :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=3.0.2,<4",
"aiohttp",
"graphql-core>=3.2",
"python-dotenv",
"pydantic-settings>=2.0",
]
[project.scripts]
opentargets-mcp = "opentargets_mcp.server:main"
[project.urls]
Homepage = "https://github.com/nickzren/opentargets-mcp"
Repository = "https://github.com/nickzren/opentargets-mcp"
Documentation = "https://github.com/nickzren/opentargets-mcp#readme"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.optional-dependencies]
dev = [
"mcp",
"pytest",
"pytest-asyncio",
"thefuzz",
"black",
"ruff",
]
examples = [
"openai",
"thefuzz",
]