mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 12:54:58 +00:00
Change pycrytpo dependecy with pycryptodome
Since pycrypto is a dead project, it's better to use an up-to-date fork with the same API. Signed-off-by: Domenico Iezzi <domenico.iezzi.201@gmail.com>
This commit is contained in:
parent
a9a3b51450
commit
e1cc147db4
30
setup.py
30
setup.py
@ -1,19 +1,15 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(name='gpapi',
|
||||||
name='gpapi',
|
version='0.2.1',
|
||||||
version='0.2.1',
|
description='Unofficial python api for google play',
|
||||||
description='Unofficial python api for google play',
|
url='https://github.com/NoMore201/googleplay-api',
|
||||||
url='https://github.com/NoMore201/googleplay-api',
|
author='NoMore201',
|
||||||
author='NoMore201',
|
author_email='domenico.iezzi.201@gmail.com',
|
||||||
author_email='domenico.iezzi.201@gmail.com',
|
license='MIT',
|
||||||
license='MIT',
|
packages=['gpapi'],
|
||||||
packages=['gpapi'],
|
package_data={'gpapi': ['device.properties']},
|
||||||
package_data={
|
install_requires=['pycryptodome',
|
||||||
'gpapi': ['device.properties'],
|
'protobuf',
|
||||||
},
|
'clint',
|
||||||
install_requires=['pycrypto',
|
'requests'])
|
||||||
'protobuf',
|
|
||||||
'clint',
|
|
||||||
'requests'],
|
|
||||||
)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user