forked from williballenthin/python-idb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.06 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.06 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
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
setup(
name='python-idb',
version='0.3.3',
description='Pure Python parser for IDA Pro databases (.idb files)',
author='Willi Ballenthin',
url='https://github.com/williballenthin/python-idb',
license='Apache License 2.0',
install_requires=[
'six',
'hexdump',
'capstone',
'vivisect-vstruct-wb>=1.0.3',
],
packages=find_packages(exclude=['*.tests', '*.tests.*']),
entry_points={
"console_scripts": [
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
)