pyproject.tomlā¢1.17 kB
[project]
name = "s3-butler"
version = "0.1.0"
description = "MCP server for S3 bucket management and analytics"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "S3 Butler Team", email = "s3butler@example.com"},
]
dependencies = [
"fastmcp>=2.3.0",
"pyngrok>=7.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.25.0",
"uvicorn>=0.30.0",
"boto3>=1.40.30",
"clickhouse-connect>=0.8.16",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "I", "N", "UP", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true