代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
# coding=utf-8
#
# This file is part of the PyRDP project.
# Copyright (C) 2019-2021 GoSecure Inc.
# Licensed under the GPLv3 or later.
#
# setuptools MUST be imported first, otherwise we get an error with the ext_modules argument.
import setuptools
from distutils.core import Extension, setup
setup(name='pyrdp',
version='1.1.1.dev0',
description='Remote Desktop Protocol Monster-in-the-Middle tool and Python library',
long_description="""Remote Desktop Protocol Monster-in-the-Middle tool and Python library""",
author='Émilio Gonzalez, Francis Labelle, Olivier Bilodeau, Alexandre Beaulieu',
url='https://github.com/GoSecure/pyrdp',
packages=setuptools.find_packages(include=["pyrdp", "pyrdp.*"]),
package_data={
"pyrdp": ["mitm/crawler_config/*.txt"],
"": ["*.default.ini"]
},
ext_modules=[Extension('rle', ['ext/rle.c'])],
scripts=[
'bin/pyrdp-clonecert.py',
'bin/pyrdp-mitm.py',
'bin/pyrdp-player.py',
'bin/pyrdp-convert.py',
],
install_requires=[
'appdirs>=1,<2',
'cryptography>=3.3.2,<4',
'names>=0,<1',
'progressbar2>=3.20,<4',
'pyasn1>=0,<1',
'pycryptodome>=3.5,<4',
'pyopenssl>=19,<20',
'pytz',
'rsa>=4,<5',
'scapy>=2.4,<3',
'service_identity>=18',
'twisted>=18',
],
extras_require={
"full": [
'wheel>=0.34.2',
'av>=8',
'PySide2>=5.12,<6',
'qimage2ndarray>=1.6',
'dbus-python>=1.2<1.3;platform_system!="Windows"',
'notify2>=0.3,<1;platform_system!="Windows"'
]
}
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。