forked from matlink/gplaycli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 983 Bytes
/
setup.py
File metadata and controls
38 lines (35 loc) · 983 Bytes
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
from setuptools import setup
import os
import sys
if sys.version_info[0] == 2:
basedir = 'python2'
python2 = True
python3 = False
else:
basedir = 'python3'
python2 = False
python3 = True
setup(name='GPlayCli',
version='3.2',
description='GPlayCli, a Google play downloader command line interface',
author="Matlink",
author_email="matlink@matlink.fr",
url="https://github.com/matlink/gplaycli",
license="AGPLv3",
scripts=['gplaycli/gplaycli'],
packages=[
'gplaycli',
],
package_dir={
'gplaycli': 'gplaycli',
},
data_files=[
[os.path.expanduser('~')+'/.config/gplaycli/', ['gplaycli.conf','cron/cronjob']],
],
install_requires=[
'protobuf',
'gpapi >= 0.1.5',
'pyaxmlparser' if python3 else 'androguard',
'enum34' if python2 else '',
],
)