File: setup.py

package info (click to toggle)
apkinspector 1.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,764 kB
  • sloc: python: 1,523; javascript: 880; makefile: 11; xml: 4
file content (20 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name='apkInspector',
    version='1.3.6',
    author='erev0s',
    author_email='projects@erev0s.com',
    description='apkInspector is a tool designed to provide detailed insights into '
                'the zip structure of APK files, offering the '
                'capability to extract content and decode the AndroidManifest.xml '
                'file.',
    url='https://github.com/erev0s/apkInspector',
    packages=find_packages(),
    python_requires='>=3.5',
    entry_points={
        'console_scripts': [
            'apkInspector=apkInspectorCLI.main:main',
        ],
    },
)