-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 709 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 709 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
[project]
name = "mcp-domain-availability"
version = "0.1.0"
description = "MCP server for checking domain availability across multiple TLDs"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.3.0",
"requests>=2.32.3",
"aiohttp>=3.11.13",
"asyncio",
"dnspython>=2.4.0",
"whois>=0.9.27",
]
[[project.authors]]
name = "Ivan Luna"
email = "ivan@imprvhub.com"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
mcp-domain-availability = "mcp_domain_availability.main:mcp.run"
mcp-domain-availability-cli = "mcp_domain_availability.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_domain_availability"]