-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 920 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="platypus-python",
version="1.0.3",
author="Wang Yihang",
author_email="wangyihanger@gmail.com",
description="Python SDK for reverse shell sessions manager - Platypus v1.4.1",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WangYihang/Platypus-Python",
packages=["platypus_python"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: System :: Networking",
],
python_requires='>=3.6',
keywords='platypus, sdk, reverse shell',
install_requires=["requests"],
)