forked from igromanru/AiDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 982 Bytes
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
[project]
name = "aida"
version = "1.4.0"
description = "Vibe reversing with IDA Pro"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "mrexodia" }, { name = "sigwl" }]
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 = [
"mcp>=1.6.0",
]
[project.urls]
Repository = "https://github.com/sigwl/AiDA"
Issues = "https://github.com/sigwl/AiDA/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["server", "idalib_server", "AiDA_MCP"]
[tool.setuptools.package-dir]
"" = "python"
[dependency-groups]
dev = [
"mcp[cli]>=1.6.0",
]
[project.scripts]
AiDA = "server:main"
idalib-mcp = "idalib_server:main"