-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 1016 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
from setuptools import setup, find_packages
setup(
name='pyapk',
packages=find_packages(),
version='v1.0',
license='MIT',
description='A simple program to install apks from a directory to android phone via adbSmall python program to install all apks on a directory(including apks in sub-directory of it) in your pc to android phones.',
author='Sujan Poudel',
author_email='psuzzn@gmail.com',
url='https://github.com/psuzn/PyApk',
download_url='https://github.com/psuzn/PyApk',
keywords=['adb', 'apk', 'install', 'android'], # arbitrary keywords
install_requires=[
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
entry_points={
'console_scripts': [
'pyapk = pyapk.pyapk:pyapkInit'
]},
)