New features exposing remaining ilspycmd capabilities: 1. PDB Generation (generate_pdb flag in decompile_assembly) - Generates portable PDB files for debugging decompiled code - Requires output_dir to be specified 2. Use PDB Variable Names (use_pdb_variable_names flag) - Reads original variable names from existing PDB files - Greatly improves readability of decompiled output 3. New dump_package tool - Extracts assemblies from NuGet package structures - Useful for bulk analysis of package dependencies Version bump: 0.3.0 -> 0.4.0
76 lines
1.9 KiB
TOML
76 lines
1.9 KiB
TOML
[project]
|
|
name = "mcilspy"
|
|
version = "0.4.0"
|
|
description = "MCP Server for ILSpy .NET Decompiler"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"}
|
|
]
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"pydantic>=2.7.0",
|
|
"dnfile>=0.15.0", # Direct .NET metadata parsing
|
|
]
|
|
requires-python = ">=3.10"
|
|
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.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Debuggers",
|
|
"Topic :: System :: Software Distribution",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"ruff>=0.4.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.supported.systems/MCP/mcilspy"
|
|
Repository = "https://git.supported.systems/MCP/mcilspy.git"
|
|
Issues = "https://git.supported.systems/MCP/mcilspy/issues"
|
|
|
|
[project.scripts]
|
|
mcilspy = "mcilspy.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcilspy"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/README.md",
|
|
"/LICENSE",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
line-length = 100
|
|
src = ["src"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
|
|
ignore = ["E501"] # line length handled by formatter
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|