代码拉取完成,页面将自动刷新
同步操作将从 qiling/qiling 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python3
#
# Python setup for Qiling framework
from setuptools import setup, find_packages
# NOTE: use "-dev" for dev branch
VERSION = "1.4.6" + "-dev"
#VERSION = "1.4.5"
requirements = [
"capstone>=4.0.1",
"unicorn>=2.0.1",
"pefile>=2022.5.30",
"python-registry>=1.3.1",
"keystone-engine>=0.9.2",
"pyelftools>=0.28",
"gevent>=20.9.0",
"multiprocess>=0.70.12.2",
"windows-curses>=2.1.0;platform_system=='Windows'",
"pyyaml>=6.0",
"python-fx",
"questionary",
"termcolor",
]
extras = {
"evm": [
"blake2b-py>=0.1.2",
"cached-property>=1.5.2;python_version<'3.8'",
"typing-extensions>=3.7.4.3;python_version<'3.8'",
"eth-keys>=0.2.1",
"eth-typing>=2.2.0",
"eth-utils>=1.9.4",
"eth_abi>=2.1.1",
"lru-dict>=1.1.6",
"py-ecc>=1.4.7",
"rlp>=2",
"trie==2.0.0-alpha.5",
"eth-hash[pycryptodome]",
"numpy",
"rich",
"cmd2"
],
"fuzz" : [
"unicornafl>=2.0.0;platform_system!='Windows'",
"fuzzercorn>=0.0.1;platform_system=='Linux'"
],
"RE": [
"r2libr>=5.7.4",
]
}
with open("README.md", "r", encoding="utf-8") as ld:
long_description = ld.read()
setup(
name='qiling',
version=VERSION,
description='Qiling is an advanced binary emulation framework that cross-platform-architecture',
url='http://qiling.io',
long_description=long_description,
long_description_content_type="text/markdown",
maintainer='KaiJern Lau (xwings)',
maintainer_email='info@qiling.io',
license='GPLv2',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 5 - Production/Stable
#'Development Status :: 5 - Production/Stable',
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
keywords='qiling binary emulator framework malware analysis UEFI IoT',
packages=find_packages(),
scripts=['qltool'],
package_data={
'qiling': ['profiles/*.ql'],
'qiling.debugger.gdb': ['xml/*/*'],
'qiling.os.uefi': ['guids.csv'],
'qiling.arch.evm.analysis': ['signatures.json']
},
install_requires=requirements,
extras_require=extras,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。