-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
32 lines (30 loc) · 1.17 KB
/
setup.py
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="sireprat-dorazouri", # Replace with your own username
version="2.0.0",
author="Dor Azouri",
author_email="[email protected]",
description="Remote Command Execution as SYSTEM on Windows IoT Core - \
Features full RAT capabilities without the need of writing a real RAT malware on target",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SafeBreach-Labs/SirepRAT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Topic :: Education",
"Topic :: Education :: Testing",
"Topic :: Security",
"Topic :: Software Development :: Testing",
"Topic :: System :: System Shells",
"Topic :: Utilities",
],
python_requires='>=3.4',
)