-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
74 lines (64 loc) · 1.58 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
[project]
name = "minimcp"
version = "0.5.2"
description = "A minimal, stateless, and lightweight framework for building remote MCP servers."
authors = [{ name = "Sreenath Somarajapuram", email = "somarajapuram@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.24.0",
]
[dependency-groups]
dev = [
"fastmcp>=3.1.1",
"build>=1.4.0",
"pre-commit>=4.5.0",
"psutil>=7.2.1",
"pyright>=1.1.407",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.9",
"twine>=6.2.0",
"viztracer>=1.1.1",
]
[project.urls]
Repository = "https://github.com/cloudera/minimcp"
PyPI = "https://pypi.org/project/minimcp/"
[tool.hatch.build.targets.sdist]
include = [
"src/",
"tests/",
"README.md",
"LICENSE",
"pyproject.toml",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py310"
line-length = 120
exclude = ["README.md", "venv", ".venv"]
[tool.ruff.lint]
select = ["C4", "E", "F", "I", "PERF", "UP"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
markers = [
"anyio: run this test with the AnyIO plugin",
]
[tool.markdown.lint]
MD013 = false
MD029 = false
MD033 = false
MD041 = false