-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
64 lines (58 loc) · 1.78 KB
/
pyproject.toml
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
58
59
60
61
62
63
64
[project]
name = "PyMemoryEditor"
dynamic = ["version"]
description = "Multi-platform library developed with ctypes for reading, writing and searching at process memory, in a simple and friendly way with Python 3."
authors = [
{ name = "Jean Loui Bernard Silva de Jesus", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
keywords = [
"memory",
"address",
"pointer",
"process",
"virtual",
"writer",
"reader",
"editor",
"override",
"win32", "api", "ctypes", "linux", "ptrace",
"cheat", "scanner", "debug", "track",
"readprocessmemory", "writeprocessmemory"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Topic :: System :: Monitoring"
]
exclude = ["tests", ".flake8"]
requires-python = ">=3.6"
dependencies = ["psutil"]
[project.optional-dependencies]
tests = [
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/JeanExtreme002/PyMemoryEditor"
[tool.hatch.version]
path = "PyMemoryEditor/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
pymemoryeditor = "PyMemoryEditor.sample.application:main"