-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 1.04 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
[project]
name = "x64dbg_automate"
version = "0.9.2"
description = "A Python library to automate x64dbg"
authors = [{ name = "Darius Houle", email = "darius@x64.ooo" }]
readme = "README.md"
keywords = ["x64dbg", "debugger", "instrumentation", "plugin", "dynamic-analysis"]
[project.urls]
Homepage = "https://dariushoule.github.io/x64dbg-automate-pyclient/"
Repository = "https://github.com/dariushoule/x64dbg-automate-pyclient"
Issues = "https://github.com/dariushoule/x64dbg-automate-pyclient/issues"
[tool.poetry.dependencies]
python = "^3.10"
pyzmq = "^27.1.0"
msgpack = "^1.2.1"
pydantic = "^2.10.6"
psutil = "^6.1.1"
mcp = {version = "^1.28.1", optional = true}
[tool.poetry.extras]
mcp = ["mcp"]
[tool.poetry.scripts]
x64dbg-automate-mcp = "x64dbg_automate.mcp_server:main"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mkdocstrings = {extras = ["python"], version = "^0.28.0"}
mkdocs = "^1.6.1"
mkdocs-autorefs = "^1.3.0"
pytest = "^9.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"