From 3c93814e5dbd98931db819aa221fef0dd1c05ded Mon Sep 17 00:00:00 2001 From: dorazouri Date: Mon, 7 Dec 2020 17:31:17 +0200 Subject: [PATCH] Create setup.py As to @noraj request: https://github.com/SafeBreach-Labs/SirepRAT/issues/13 --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..89cb93f --- /dev/null +++ b/setup.py @@ -0,0 +1,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="1.0.0", + author="Dor Azouri", + author_email="dorazouri@gmail.com", + 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 :: 2", + "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='=2.7', +)