-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 861 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='smalanalysis',
version='0.1a1',
description='Android Bytecode Analysis Tools',
long_description='Android Bytecode Analysis Tools',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
],
python_requires='~=3.6',
keywords='smali android apk baksmali',
url='https://github.com/v-m/smalanalysis',
author='Vincenzo Musco',
author_email='[email protected]',
license='MIT',
packages=['smalanalysis','smalanalysis.smali', 'smalanalysis.tools'],
install_requires=[],
scripts=['bin/sa-disassemble', 'bin/sa-including-debug', 'bin/sa-metrics'],
include_package_data=True,
zip_safe=False)