-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.47 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.47 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
from setuptools import setup, find_packages
import AsyncRemoteShell
setup(
name="AsyncRemoteShell",
version=AsyncRemoteShell.__version__,
packages=find_packages(),
author="Maurice Lambert",
author_email="mauricelambert434@gmail.com",
description="This package implement 4 asynchronous tools to execute remote commands",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/mauricelambert/AsyncRemoteShell",
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Topic :: Security",
"Topic :: System :: Shells",
"Topic :: System :: Networking",
],
entry_points={
"console_scripts": [
"ShellClient = AsyncRemoteShell:shell_client",
"ShellServer = AsyncRemoteShell:shell_server",
"ReverseShellClient = AsyncRemoteShell:reverse_shell_client",
"ReverseShellServer = AsyncRemoteShell:reverse_shell_server",
],
},
python_requires=">=3.6",
)