pyproject.toml•1.76 kB
[project]
name = "trae-rules-mcp"
version = "1.0.1"
description = "Trae AI 规则文件生成器 MCP 服务 - 智能生成项目开发规则"
authors = [{name = "Trae AI", email = "support@trae.ai"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["mcp", "trae", "rules", "generator", "development", "ai"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"pathlib2>=2.3.0"
]
[project.urls]
Homepage = "https://github.com/trae-ai/trae-rules-mcp"
Repository = "https://github.com/trae-ai/trae-rules-mcp"
Issues = "https://github.com/trae-ai/trae-rules-mcp/issues"
Documentation = "https://github.com/trae-ai/trae-rules-mcp#readme"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["trae_rules_mcp"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"twine>=6.1.0",
]