pyproject.toml•1.03 kB
[project]
name = "mcp-domain-availability"
version = "1.0.0"
description = "MCP Server for Domain Availability Checking"
readme = "README.md"
authors = [
{ name = "OriShmila", email = "smilaori@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"mcp[cli,fastmcp]>=1.0.0",
"httpx>=0.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.scripts]
mcp-domain-availability = "domain_availability.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["domain_availability"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.ruff]
target-version = "py39"
line-length = 88
select = ["E", "F", "W", "I", "N", "UP", "YTT", "S", "B", "A", "C4", "T10", "T20", "Q"]
ignore = ["E501", "S101", "N818"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"