-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (52 loc) · 1.7 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
from setuptools import setup
from glob import glob
setup(
name="ReverseShell",
version="0.1.0",
py_modules=["ReverseShell"],
install_requires=["PythonToolsKit"],
author="Maurice Lambert",
author_email="mauricelambert434@gmail.com",
maintainer="Maurice Lambert",
maintainer_email="mauricelambert434@gmail.com",
description=(
"This package implements an advanced reverse "
"shell console (supports: TCP, UDP, IRC, HTTP and DNS)."
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mauricelambert/ReverseShell",
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/ReverseShell.html",
"Executable": "https://mauricelambert.github.io/info/python/security/ReverseShell.pyz",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: System :: Networking",
"Natural Language :: English",
"Operating System :: MacOS",
"Topic :: Security",
],
scripts=glob("clients/*.py"),
python_requires=">=3.8",
entry_points={
"console_scripts": ["ReverseShell = ReverseShell:main"],
},
keywords=[
"ReverseShell",
"terminal",
"console",
"netcat",
"HTTP",
"IRC",
"DNS",
"TCP",
"UDP",
],
platforms=["Windows", "Linux", "MacOS"],
license="GPL-3.0 License",
)