-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
37 lines (35 loc) · 915 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
File: /setup.py
Project: aapt
Description:
Created By: Tao.Hu 2019-07-08
-----
Last Modified: 2019-07-08 02:03:42 pm
Modified By: Tao.Hu
-----
'''
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="aapt",
version="1.0.2",
keywords=("aapt", "apktool"),
description="Android Asset Packaging Tool for Python3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HuMoran/aapt",
author="Tao.Hu",
author_email="[email protected]",
py_modules=['aapt'],
include_package_data=True,
platforms="any",
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)