-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.98 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (54 loc) · 1.98 KB
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
51
52
53
54
55
56
#!/usr/bin/env python3
"""
Setup configuration for apk2aab package
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README for long description
readme_file = Path(__file__).parent / "README.md"
if readme_file.exists():
with open(readme_file, "r", encoding="utf-8") as f:
long_description = f.read()
else:
long_description = "Convert Android APK files to AAB (Android App Bundle) format for Google Play Store"
setup(
name="apk2abb",
version="0.1.1",
author="Nithin Jambula",
author_email="nithinjambula89@gmail.com",
description="Convert Android APK files to AAB (Android App Bundle) for Google Play Store publishing",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nithin434/apk2abb",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
# No external Python dependencies
],
entry_points={
"console_scripts": [
"apk2abb-setup=apk2abb.download_bundletool:main",
"apk2abb-cert=apk2abb.cert_manager:main",
"apk2abb-convert=apk2abb.apk_to_aab:main",
"apk2abb-analyze=apk2abb.analyze_aab:main",
],
},
keywords="apk aab android app bundle google play store converter",
project_urls={
"Bug Reports": "https://github.com/nithin434/apk2abb/issues",
"Source": "https://github.com/nithin434/apk2abb",
},
)