代码拉取完成,页面将自动刷新
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# For Testing:
#
# python3.4 setup.py register -r https://testpypi.python.org/pypi
# python3.4 setup.py bdist_wheel upload -r https://testpypi.python.org/pypi
# python3.4 -m pip install -i https://testpypi.python.org/pypi
#
# For Realz:
#
# python3.4 setup.py register
# python3.4 setup.py bdist_wheel upload
# python3.4 -m pip install
PY3_DEPS = [
'six',
'hexdump',
'vivisect-vstruct-wb>=1.0.3',
]
# python2.7 has no `functools.lru_cache`,
# so use a backported copy when necessary.
PY2_DEPS = PY3_DEPS + ['functools32']
if sys.version_info[0] == 2:
DEPS = PY2_DEPS
elif sys.version_info[0] == 3:
DEPS = PY3_DEPS
else:
raise RuntimeError('unexpected python major version')
setup(
name='python-idb',
version='0.5.0',
description='Pure Python parser for IDA Pro databases (.idb files)',
author='Willi Ballenthin',
author_email='willi.ballenthin@gmail.com',
url='https://github.com/williballenthin/python-idb',
license='Apache License 2.0',
install_requires=DEPS,
extras_require = {
# install like `pip install python-idb[disassembly]`
# note, capstone is annoying to install on windows and in virtualenvs.
'disassembly': ['capstone'],
},
packages=find_packages(exclude=['*.tests', '*.tests.*']),
entry_points={
"console_scripts": [
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。