Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
As to @noraj request: #13
  • Loading branch information
dorazouri authored Dec 7, 2020
1 parent 08b372d commit 3c93814
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 3c93814

Please sign in to comment.