51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
[project]
|
|
name = "ilspy-mcp-server"
|
|
version = "0.1.1"
|
|
description = "MCP Server for ILSpy .NET Decompiler"
|
|
authors = [
|
|
{name = "Borealin", email = "me@borealin.cn"}
|
|
]
|
|
dependencies = [
|
|
"mcp>=0.1.0",
|
|
"pydantic>=2.0.0",
|
|
]
|
|
requires-python = ">=3.8"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["mcp", "ilspy", "decompiler", "dotnet", "csharp", "reverse-engineering"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Debuggers",
|
|
"Topic :: System :: Software Distribution",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Borealin/ilspy-mcp-server"
|
|
Repository = "https://github.com/Borealin/ilspy-mcp-server.git"
|
|
Issues = "https://github.com/Borealin/ilspy-mcp-server/issues"
|
|
|
|
[project.scripts]
|
|
ilspy-mcp-server = "ilspy_mcp_server.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ilspy_mcp_server"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/README.md",
|
|
"/LICENSE",
|
|
] |