pyproject.toml•1.01 kB
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "antd-mcp-server"
version = "0.1.2"
description = "MCP server exposing Ant Design v4 Chinese documentation as structured JSON-RPC tools"
readme = "README.md"
authors = [{name = "Your Name", email = "you@example.com"}]
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["mcp", "ant-design", "documentation", "json-rpc", "ai-tools"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"lxml>=4.9.0",
"html5lib>=1.1"
]
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "build>=1.0.0", "twine>=5.0.0"]
[project.scripts]
antd-mcp-server = "server:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["server", "fetcher"]
[tool.pytest.ini_options]
addopts = "-q"
[tool.distutils.bdist_wheel]
universal = true