mirror of
https://github.com/Bw3ll/ShellWasp
synced 2026-06-08 10:31:49 +00:00
29 lines
673 B
Python
29 lines
673 B
Python
from setuptools import setup, find_packages
|
|
import os
|
|
import re
|
|
|
|
NAME = "ShellWasp"
|
|
VERSION = "1.0.1"
|
|
REQUIREMENTS = [
|
|
"colorama>=0.4.4",
|
|
"keystone-engine>=0.9.2",
|
|
|
|
]
|
|
|
|
setup(
|
|
name='ShellWasp: 32-bit Syscall Shellcode Generator',
|
|
author='Bramwell Brizendine',
|
|
description='ShellWasp - Generating 32-bit, WoW64 shellcode with Windows Syscalls',
|
|
version=VERSION,
|
|
long_description="Words",
|
|
url='https://github.com/',
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
install_requires=REQUIREMENTS,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|
|
|