forked from matlink/gplaycli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 753 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
from setuptools import setup
import os
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='gplaycli',
version='3.29',
description='GPlayCli, a Google play downloader command line interface',
long_description=long_description,
long_description_content_type="text/markdown",
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=[
['etc/gplaycli', ['gplaycli.conf']],
],
install_requires=[
'matlink-gpapi>=0.4.4.4',
'pyaxmlparser',
],
)