-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.31 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
[build-system]
requires = [
"uv-build>=0.8.22,<0.9",
]
build-backend = "uv_build"
[project]
name = "mcp-simple-sampling-client"
version = "0.1.0"
description = "Exploring different features of MCP servers and clients"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Anirban Ray", email = "39331844+yarnabrina@users.noreply.github.com" }
]
keywords = [
"mcp",
"mcp-client",
"sampling",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.1",
"mcp>=1.25.0,<2",
"pydantic>=2.11.0,<3.0.0",
"pydantic-settings>=2.5.2",
]
[project.scripts]
mcp-simple-sampling-client = "mcp_simple_sampling_client.main:main"
[tool.uv.build-backend]
module-name = "mcp_simple_sampling_client"
module-root = ""