-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
37 lines (33 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mindmap-mcp-server"
version = "0.1.1"
description = "MCP server for converting Markdown to mindmaps"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "YuChenSSR"}
]
keywords = ["mcp", "mindmap", "markdown", "claude", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.2.0",
]
[project.urls]
"Homepage" = "https://github.com/YuChenSSR/mindmap-mcp-server"
"Bug Tracker" = "https://github.com/YuChenSSR/mindmap-mcp-server/issues"
[project.scripts]
mindmap-mcp-server = "mindmap_mcp_server.server:main"
[tool.hatch.build.targets.wheel]
packages = ["mindmap_mcp_server"]