-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 1.06 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
from setuptools import find_packages, setup
from apkfile import __version__
setup(
name="apkfile",
packages=find_packages(),
version=__version__,
description="Python wrapper for aapt • ApkFile, XapkFile, ApkmFile",
long_description=(open('README.md', encoding='utf-8').read()),
long_description_content_type="text/markdown",
author_email='[email protected]',
project_urls={
"Documentation": "https://github.com/david-lev/apkfile#readme",
"Issue Tracker": "https://github.com/david-lev/apkfile/issues",
"Source Code": "https://github.com/david-lev/apkfile",
"Funding": "https://github.com/sponsors/david-lev"
},
download_url="https://pypi.org/project/apkfile/",
author='David Lev',
license='MIT',
keywords='apk, aapt, apkfile, apks, apkm, xapk',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)