-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 916 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-plaid"
version = "0.1.0"
description = "Model Context Protocol (MCP) server to build fast integration testing with Plaid Sandbox data."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Plaid Inc.", email = "developers@plaid.com" }
]
dependencies = [
"httpx",
"mcp",
"websockets",
"plaid-python"
]
[project.scripts]
mcp-server-plaid = "mcp_server_plaid:main"
[tool.pytest]
testpaths = ["src/mcp_server_plaid/test"]
python_files = "test_*.py"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_plaid"]
exclude = ["src/mcp_server_plaid/test"]
[tool.hatch.build.targets.sdist]
exclude = ["src/mcp_server_plaid/test"]