-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (33 loc) · 969 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
from setuptools import setup, find_packages
from apkdl import __version__
import os
setup(
name ='apkdl',
version = __version__,
description = 'Search and download APKs from the command line',
url = 'https://github.com/sereneblue/apkdl',
author = 'sereneblue',
license = "MIT",
packages = find_packages(),
classifiers = [
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords = ['android', 'apk', 'cli'],
install_requires = ['requests', 'beautifulsoup4'],
entry_points = {
'console_scripts':[
'apkdl=apkdl.__main__:main'
],
}
)