pyproject.toml•1.04 kB
[project]
name = "tos-mcp-server"
version = "0.1.0"
description = "TOS (火山引擎对象存储) MCP Server - 提供 TOS 对象存储服务的 MCP 工具集成"
readme = "readme.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"tos>=2.8.1",
"python-dotenv>=1.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
[project.scripts]
tos-mcp-server = "tos_mcp_server.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true