1 Star 0 Fork 0

steven/pyrdp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
#!/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',
author_email='[email protected]',
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"'
]
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/diss_1_safe2011/pyrdp.git
[email protected]:diss_1_safe2011/pyrdp.git
diss_1_safe2011
pyrdp
pyrdp
master

搜索帮助