forked from kin9-0rz/apkutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (31 loc) · 950 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os.path
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="apkutils",
version='0.8.1',
description=("Utils for parsing apk."),
long_description=read('README.rst'),
url="https://github.com/mikusjelly/apkutils",
author="mikusjelly",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
keywords="apk dex axml",
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
"anytree",
"cigam",
"pyelftools",
"pyopenssl",
"TextWizard",
"xmltodict",
"beautifulsoup4",
],
)