-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (23 loc) · 975 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
from __future__ import print_function
from setuptools import setup
import sys
if sys.version_info < (2, 6):
print('google-api-python-client requires python version >= 2.6.', file = sys.stderr)
sys.exit(1)
install_requires = ['google-api-python-client==1.3.1']
if sys.version_info < (2, 7):
install_requires.append('argparse')
setup(
name = 'android-publish-cli',
packages = [],
version = '0.1.2',
description = 'A simple CLI for Google Play Publish API',
author = 'Spreaker',
author_email = '[email protected]',
url = 'https://github.com/spreaker/android-publish-cli',
download_url = 'https://github.com/spreaker/android-publish-cli/tarball/0.1.2',
keywords = ['android', 'automation', 'google'],
classifiers = [],
install_requires = install_requires,
scripts = ['bin/android-publish']
)