pyproject.toml•1.23 kB
[project]
name = "email-send-mcp"
version = "1.0.0"
description = "Email Send/Receive MCP Server with POP3/IMAP/SMTP support"
authors = [
{name = "bedro96", email = "bedro96@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"fastmcp>=0.2.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"pydantic-settings>=2.0.0",
"aiosmtplib>=3.0.0",
"aioimaplib>=1.0.0",
"email-validator>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.ruff]
line-length = 88
target-version = "py311"