googleplay-api/setup.py
Domenico Iezzi 23937e6cb8
Improved file delivery + minor changes
* Updated user agent string with data taken from play-store-api
* *download* and *delivery* functions will now return a python generator
rather than raw bytes, to prevent app loading entire files in memory.
This generator can be iterated to get chunk of bytes to write, as
discussed in issue #35.
* as a consequence of the previous point, there is no more progress bar
feature for downloading. It should be implemented by developers using
the API.
2018-01-26 18:24:19 +01:00

15 lines
479 B
Python

from setuptools import setup
setup(name='gpapi',
version='0.3.2',
description='Unofficial python api for google play',
url='https://github.com/NoMore201/googleplay-api',
author='NoMore201',
author_email='domenico.iezzi.201@gmail.com',
license='MIT',
packages=['gpapi'],
package_data={'gpapi': ['device.properties']},
install_requires=['pycryptodome',
'protobuf',
'requests'])