-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 956 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 956 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
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aobscanfast"
version = "2.0.0"
description = "High-performance native AOB memory scanner for Windows and Linux"
readme = "README.pypi.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "larkliy" }]
keywords = ["memory", "scanner", "aob", "pattern", "reverse-engineering"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/larkliy/AobscanFast"
Repository = "https://github.com/larkliy/AobscanFast"
Issues = "https://github.com/larkliy/AobscanFast/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
aobscanfast = ["_native/*.dll", "_native/*.so"]