-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 2.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# [build-system]
# requires = ["setuptools"]
# build-backend = "setuptools.build_meta"
[project]
name = "PyPeLoader"
version = "1.0.0"
dependencies = []
authors = [
{name = "Maurice Lambert", email = "mauricelambert434@gmail.com"},
]
maintainers = [
{name = "Maurice Lambert", email = "mauricelambert434@gmail.com"},
]
description = 'This package implements a basic PE loader in python to load executables in memory.'
readme = {file = "README.md", content-type = "text/markdown"}
# url = "https://github.com/mauricelambert/PyPeLoader"
# download-url = "https://mauricelambert.github.io/info/python/security/PyPeLoader.pyz"
classifiers = [
"Topic :: System",
"Topic :: Security",
"Environment :: Console",
"Topic :: System :: Shells",
"Natural Language :: English",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: System :: System Shells",
"Programming Language :: Python :: 3.8",
'Operating System :: Microsoft :: Windows',
"Topic :: System :: Systems Administration",
"Intended Audience :: System Administrators",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
keywords = ['PeLoader', 'Loader', 'Linker', 'WindowsLinker', 'Packer', 'MemoryExecution', 'AntivirusBypass', 'Antivirus', 'Bypass', 'Hooks', 'Win32', 'WinAPI', 'reverse', 'malware-reverse']
license = {text = "GPL-3.0 License"}
requires-python = ">=3.8"
[project.scripts]
PyPeLoader = "PyPeLoader:main"
[project.urls]
"Github" = "https://github.com/mauricelambert/PyPeLoader"
"Documentation" = "https://mauricelambert.github.io/info/python/security/PyPeLoader.html"
"Python Executable" = "https://mauricelambert.github.io/info/python/security/PyPeLoader.pyz"
"Windows Executable" = "https://mauricelambert.github.io/info/python/security/PyPeLoader.exe"
[tool.setuptools]
include-package-data = true
platforms = ['Windows']
py-modules = ['PyPeLoader']
packages = []
script-files = []
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}