forked from Dumbris/mcpproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (104 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
111 lines (104 loc) · 2.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "smart-mcp-proxy"
version = "0.3.1"
description = "Smart MCP Proxy - A federating gateway for MCP servers with intelligent tool discovery"
readme = "README.md"
requires-python = ">=3.11.1"
license = {text = "MIT"}
authors = [
{name = "Algis Dumbris", email = "a.dumbris@gmail.com"},
]
maintainers = [
{name = "Algis Dumbris", email = "a.dumbris@gmail.com"},
]
keywords = [
"mcp",
"model-context-protocol",
"ai",
"proxy",
"gateway",
"tool-discovery",
"fastmcp",
"embedding",
"search",
"smart",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
]
dependencies = [
"fastmcp>=2.8.0",
"httpx>=0.28.1",
"pydantic>=2.11.5",
"numpy>=2.2.6",
"bm25s>=0.2.13",
]
[project.scripts]
mcpproxy = "mcpproxy.__main__:main"
smart-mcp-proxy = "mcpproxy.__main__:main"
[project.optional-dependencies]
bm25 = [
"bm25s>=0.2.13",
]
huggingface = [
"sentence-transformers>=4.1.0",
"faiss-cpu>=1.11.0",
"bm25s>=0.2.13",
]
openai = [
"openai>=1.86.0",
"faiss-cpu>=1.11.0",
"bm25s>=0.2.13",
]
all = [
"sentence-transformers>=4.1.0",
"openai>=1.86.0",
"faiss-cpu>=1.11.0",
"bm25s>=0.2.13",
]
test = [
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"pytest-mock>=3.10.0",
"pytest-cov>=4.0.0",
]
dev = [
"build>=1.2.2.post1",
"ruff>=0.8.0",
"mypy>=1.9.0",
]
[project.urls]
Homepage = "https://mcpproxy.app"
Documentation = "https://mcpproxy.app"
Repository = "https://github.com/Dumbris/mcpproxy"
"Bug Reports" = "https://github.com/Dumbris/mcpproxy/issues"
"Source Code" = "https://github.com/Dumbris/mcpproxy"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
markers = [
"faiss: marks tests as requiring faiss (deselect with '-m \"not faiss\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["mcpproxy"]