forked from matlink/gplaycli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (35 loc) · 836 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
35
36
37
from setuptools import setup
import os
import sys
if sys.version_info[0] == 2:
sys.stderr.write("""
Python2 support has been removed since version 3.9
Please install GPlayCli with Python3
Or install version 3.8 but don't expect support""")
sys.exit(1)
setup(name='GPlayCli',
version='3.26',
description='GPlayCli, a Google play downloader command line interface',
author="Matlink",
author_email="[email protected]",
url="https://github.com/matlink/gplaycli",
license="AGPLv3",
entry_points={
'console_scripts': [
'gplaycli = gplaycli.gplaycli:main',
],
},
packages=[
'gplaycli',
],
package_dir={
'gplaycli': 'gplaycli',
},
data_files=[
[os.path.expanduser('~')+'/.config/gplaycli', ['gplaycli.conf','cron/cronjob']],
],
install_requires=[
'gpapi',
'pyaxmlparser',
],
)