Files
Construction-project-master/pyproject.toml
2026-04-03 09:13:05 +09:00

38 lines
844 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "civilplan-mcp"
version = "1.0.0"
description = "CivilPlan MCP server for Korean civil and building project planning."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "22B Labs", email = "sinmb79@example.com" }
]
dependencies = [
"fastmcp>=2.0.0",
"pydantic>=2.0.0",
"openpyxl>=3.1.0",
"python-docx>=1.1.0",
"svgwrite>=1.4.3",
"ezdxf>=1.3.0",
"aiosqlite>=0.20.0",
"httpx>=0.27.0",
"apscheduler>=3.10.0",
"python-dotenv>=1.0.1",
"python-dateutil>=2.9.0",
]
[project.scripts]
civilplan-setup-keys = "civilplan_mcp.setup_keys:main"
[tool.setuptools.packages.find]
include = ["civilplan_mcp*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]