-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 865 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
40
41
42
43
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "secoda-mcp"
version = "0.1.0"
description = "Secoda MCP - FastMCP Server for Secoda"
authors = [
{name = "Secoda Team"}
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"fastmcp>=0.1.0",
"requests>=2.28.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
"pytest>=7.0.0",
"mypy>=1.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py38"
select = ["E", "F", "I", "N", "B", "W", "C", "D"]
ignore = ["D100", "D104", "D107", "E501", "N812"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true