-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (48 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
59 lines (48 loc) · 1.05 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
[project]
name = "aiblock-mcp"
version = "0.1.0"
description = "AIBlock MCP Server"
authors = [ { name = "AIBlock" } ]
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"aiblock>=0.2.9",
"python-dotenv>=1.0.1",
"uvicorn>=0.30.0",
"mcp",
"pydantic>=2.10.0",
]
[project.urls]
Homepage = "https://github.com/AIBlockOfficial/mcp"
Source = "https://github.com/AIBlockOfficial/mcp"
[project.optional-dependencies]
dev = [
"ruff>=0.5",
"mypy>=1.10",
"pytest>=8",
"pytest-cov>=5",
"httpx>=0.28",
]
[tool.uv]
index-url = "https://pypi.org/simple"
[tool.ruff]
line-length = 100
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
no_implicit_optional = true
mypy_path = ["src"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["src"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]