-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 811 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 811 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
35
36
37
38
39
[project]
name = "m-docs"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiofiles>=25.1.0",
"fastmcp>=2.13.0",
]
[dependency-groups]
dev = [
"ruff>=0.14.2",
]
[tool.ruff]
# Target Python 3.13+
target-version = "py313"
# Exclude paths
exclude = [
".git",
"__pycache__",
"*.egg-info",
".venv",
]
line-length = 88
[tool.ruff.lint]
# Enable common rules
select = ["E", "F", "W", "B", "C90", "I", "UP", "PL"]
# Ignore specific rules - complexity warnings for now since they require refactoring
# ignore = ["E501", "C901", "PLR0912", "PLR0915", "PLR2004", "PLC0415", "B007"]
[tool.ruff.format]
# Use double quotes for strings
quote-style = "double"
# Keep trailing commas
skip-magic-trailing-comma = false