-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (50 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
60 lines (50 loc) · 1.1 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
[project]
name = "web3-mcp"
dynamic = ["version"]
description = "FastMCP server wrapping Ankr Advanced API"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ankr-sdk>=1.0.2",
"fastmcp>=2.2.0",
]
[project.scripts]
web3-mcp = "web3_mcp.__main__:main"
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"ruff>=0.11.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 100
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "session"
[dependency-groups]
dev = [
"pytest-asyncio>=0.26.0",
]
[tool.hatch.version]
path = "src/web3_mcp/__version__.py"
pattern = "__version__ = \"(?P<version>.+)\""