-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (38 loc) · 940 Bytes
/
pyproject.toml
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
[project]
name = "thirdweb-mcp"
dynamic = ["version", "dependencies"]
description = "thirdweb MCP"
authors = [{ name = "thirdweb", email = "[email protected]" }]
requires-python = "~=3.10"
readme = "README.md"
license = "Apache-2.0"
[project.scripts]
thirdweb-mcp = "src.mcp:main"
[dependency-groups]
dev = [
"ruff>=0.9.10,<0.10",
"pyright>=1.1.396,<2",
]
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.hatch.build.targets.wheel]
include = ["src"]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.hatch.build.hooks.version]
path = "src/_version.py"
template = '''
version = "{version}"
'''
[tool.hatch.metadata.hooks.uv-dynamic-versioning]
dependencies = [
"mcp>=1.3.0,<2",
"click>=8.1.8,<9",
"thirdweb-ai[mcp]=={{ version }}",
]
[tool.uv-dynamic-versioning]
vcs = "git"
style = "semver"