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
|
from setuptools import find_packages, setup
__VERSION__ = '0.3.31'
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='pyaxmlparser',
version=__VERSION__,
url='https://github.com/appknox/pyaxmlparser',
author='Subho Halder',
author_email='sunny@appknox.com',
license='Apache License 2.0',
data_files=[('share/man/man1', ['apkinfo.1'])],
packages=find_packages(exclude=['tests', 'examples']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['lxml', 'click>=6.7', 'asn1crypto>=0.24.0'],
entry_points='''
[console_scripts]
apkinfo = pyaxmlparser.cli:main
''',
py_modules=['pyaxmlparser'],
description="Python3 Parser for Android XML file and get Application Name without using Androguard",
long_description=long_description,
long_description_content_type="text/markdown",
keywords='appknox axmlparser arscparser android',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|