-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.07 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
[tool.poetry]
name = "libmemmod"
version = "0.0.6"
description = "A library to modify another program's memory."
authors = [ "DanielFvM <deancode@proton.me>" ]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/danielfvm/memmod"
repository = "https://github.com/danielfvm/memmod"
keywords = ["linux", "memory", "hacking-tools"]
packages = [
{ include = "memmod" }
]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.urls]
"Homepage" = "https://github.com/danielfvm/memmod"
"Bug Tracker" = "https://github.com/danielfvm/memmod/issues"
[tool.poetry.group.dev.dependencies]
setuptools = "^68.2.2"
[build-system]
requires = ["setuptools", "poetry_core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.8"
pyelftools = "^0.28"
capstone = "4.0.2"
xlib = "^0.21"
autopep8 = "^2.0.4"
[tool.poetry.scripts]
accessanalyzer = "memmod.scripts.accessanalyzer:main"
pointerscanner = "memmod.scripts.pointerscanner:main"
loadshared = "memmod.scripts.loadshared:main"
timerhack = "memmod.scripts.timerhack:main"