forked from androguard/androguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.27 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# vim: fenc=utf-8
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
#
"""
File name: setup.py
Version: 0.1
Author: dhilipsiva <[email protected]>
Date created: 2015-11-24
"""
from setuptools import setup, find_packages
setup(
name='ak-androguard',
version='3.2.4',
description="A fork of official Androguard project",
url='https://github.com/appknox/ak-androguard',
author='dhilipsiva',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='A fork of official Androguard project',
packages=find_packages(),
entry_points='''
''',
scripts=[
'androaxml.py', 'androcsign.py', 'androdiff.py', 'androgexf.py',
'androlyze.py', 'androsign.py', 'androsim.py', 'apkviewer.py',
'androdd.py', 'androgui.py',
],
install_requires=[
'distribute',
'networkx',
],
extras_require={
'dev': [''],
'test': [''],
},
)