-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.59 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "mcp-llm-bridge"
version = "0.1.0"
description = "Bridge between MCP protocol and LLM clients"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Your Name", email = "[email protected]"},
]
dependencies = [
"mcp>=1.0.0",
"openai>=1.0.0",
"python-dotenv>=0.19.0",
"pydantic>=2.0.0",
"asyncio>=3.4.3",
"aiohttp>=3.8.0",
"typing-extensions>=4.0.0",
"colorlog>=6.9.0",
]
[tool.poetry]
name = "mcp-llm-bridge"
version = "0.1.0"
description = "Bridge between MCP protocol and LLM clients"
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [{include = "mcp_llm_bridge", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.12"
mcp = ">=1.0.0"
openai = ">=1.0.0"
python-dotenv = ">=0.19.0"
pydantic = ">=2.0.0"
asyncio = ">=3.4.3"
aiohttp = ">=3.8.0"
typing-extensions = ">=4.0.0"
colorlog = ">=6.9.0"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.10.0",
"pytest-aiohttp>=1.0.4",
]
[tool.poetry.group.test.dependencies]
pytest = ">=7.0.0"
pytest-asyncio = ">=0.21.0"
pytest-mock = ">=3.10.0"
pytest-aiohttp = ">=1.0.4"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["mcp_llm_bridge*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]