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
28 lines (27 loc) · 834 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 834 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
from setuptools import setup, Command
import os
setup(name='GPlayCli',
version='0.1.5-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=[
'ext_libs/googleplay_api/',
'ext_libs/',
'gplaycli/',
],
data_files=[
[os.path.expanduser('~')+'/.config/gplaycli/', ['credentials.conf','cron/cronjob']],
],
install_requires=[
'requests >= 2.0.0',
'protobuf',
'ndg-httpsclient',
'androguard',
'clint',
'pyasn1',
],
)