-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
61 lines (52 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
52
53
54
55
56
57
58
59
60
61
[project]
name = "everyrow-mcp"
version = "0.2.1"
description = "MCP server for everyrow: agent ops at spreadsheet scale"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"everyrow>=0.1.5",
"mcp[cli]>=1.0.0",
"pandas>=2.0.0",
"pydantic>=2.0.0,<3.0.0",
]
[project.scripts]
everyrow-mcp = "everyrow_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/everyrow_mcp"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"basedpyright>=1.22.0",
"ruff>=0.9.9",
]
[tool.basedpyright]
venvPath = "."
venv = ".venv"
include = ["src", "tests"]
typeCheckingMode = "standard"
[tool.ruff]
include = ["src/**/*.py", "tests/**/*.py"]
exclude = [".venv"]
target-version = "py312"
[tool.ruff.lint]
select = ["F", "E", "W", "PL", "RUF", "ARG", "F401", "UP"]
ignore = [
"E501", # line too long
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"PLR2004", # Magic value used in comparison
"PLR0913", # Too many arguments
]
fixable = ["ALL"]
unfixable = []
extend-select = ["I"]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["src"]
asyncio_mode = "auto"