pyproject.toml•1.87 kB
[project]
name = "mcp-s3"
version = "1.1.0"
description = "MCP S3 File Uploader - A Model Context Protocol server for S3 uploads"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Dayong Huang", email = "dayong.d1@gmail.com"}
]
maintainers = [
{name = "Dayong Huang", email = "dayong.d1@gmail.com"}
]
keywords = ["mcp", "s3", "aws", "file-upload", "model-context-protocol", "fastmcp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: System :: Archiving :: Backup",
]
dependencies = [
"fastmcp>=2.11.0",
"boto3>=1.26.0",
"pydantic>=2.11.0",
"python-dotenv>=1.1.0",
]
[project.scripts]
mcp-s3 = "mcp_s3:main"
[project.entry-points."mcp.servers"]
s3 = "mcp_s3:main"
[project.urls]
Homepage = "https://github.com/dayongd1/mcp-s3"
Repository = "https://github.com/dayongd1/mcp-s3"
Documentation = "https://github.com/dayongd1/mcp-s3/blob/main/README.md"
"Bug Tracker" = "https://github.com/dayongd1/mcp-s3/issues"
Changelog = "https://github.com/dayongd1/mcp-s3/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"mcp_s3.py",
"__main__.py",
"README.md",
"LICENSE",
"AWS_SETUP_GUIDE.md",
"env_example.txt",
]
[tool.hatch.build.targets.wheel]
include = [
"mcp_s3.py",
"__main__.py",
]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
]