forked from mrexodia/ida-pro-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.31 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "ida-pro-mcp"
version = "2.0.0"
description = "Vibe reversing with IDA Pro"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "mrexodia" },
{ name = "can1357" },
{ name = "IDA Pro MCP Contributors" },
]
keywords = ["ida", "mcp", "llm", "plugin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"idapro>=0.0.7",
"tomli-w>=1.0.0",
]
[dependency-groups]
dev = [
"coverage>=7.13.4",
"jsonschema>=4.0",
]
[project.urls]
Repository = "https://github.com/mrexodia/ida-pro-mcp"
Issues = "https://github.com/mrexodia/ida-pro-mcp/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
ida-pro-mcp = "ida_pro_mcp.server:main"
idalib-mcp = "ida_pro_mcp.idalib_server:main"
ida-mcp-test = "ida_pro_mcp.test:main"
[tool.pyright]
include = ["src/ida_pro_mcp"]
[tool.ruff]
exclude = ["src/ida_pro_mcp/ida_mcp/zeromcp/*.py"]
[tool.coverage.run]
relative_files = true
include = ["src/ida_pro_mcp/*"]
omit = [
"src/ida_pro_mcp/ida_mcp/tests/*",
"src/ida_pro_mcp/ida_mcp/zeromcp/*",
]