-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.15 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
[project]
name = "pcbparts-mcp"
version = "0.4.5"
description = "MCP server for searching electronic components for PCB design and assembly"
requires-python = ">=3.12"
dependencies = [
# MCP SDK and FastMCP framework
"mcp>=1.3.0",
"fastmcp>=3.0.0",
# Anti-detection HTTP client (TLS fingerprinting, WAF solving, rotation)
"wafer-py>=0.1.4",
# HTTP client for Mouser/DigiKey APIs
"httpx>=0.27.0",
# ASGI server and middleware
"uvicorn[standard]",
"starlette",
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio",
"pyyaml",
"defusedxml",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pcbparts_mcp"]
[tool.uv]
# rnet (transitive dep of wafer-py) is a pre-release package
prerelease = "allow"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: hits live APIs (JLCPCB, EasyEDA) — run with pytest -m integration",
"quality: board search quality evaluation — run with pytest -m quality",
]
addopts = "-m 'not integration and not quality'"