forked from microsoft/lets-learn-mcp-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 606 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 606 Bytes
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
[project]
name = "mcp-python-demo"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastmcp>=2.10.5",
"mcp[cli]>=1.9.4",
"pandas>=2.3.1",
"rich>=14.0.0",
"dataclasses-json>=0.6.0"
]
[tool.ruff]
line-length = 120
target-version = "py311"
select = ["E", "F", "I", "UP", "A"]
ignore = ["D203"]
[tool.black]
line-length = 120
target-version = ["py311"]
[dependency-groups]
dev = [
"pre-commit",
"ruff",
"black",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"coverage",
"pytest-cov",
]