-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 870 Bytes
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
[build-system]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"
[project]
name = "uniprot-mcp"
version = "0.1.0"
description = "Boilerplate for creating MCP (Model Context Protocol) servers that wrap existing APIs"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Your Name/Organization"}
]
dependencies = [
"fastapi>=0.100.0",
"httpx>=0.24.1",
"mcp>=1.2.0",
"pydantic>=2.0.0",
"uvicorn>=0.22.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"pytest-asyncio>=0.15.0",
"black>=21.5b2",
"isort>=5.9.0",
"mypy>=0.910",
]
[project.scripts]
mcp-server = "mcp_server.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["mcp_server"]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 88