Skip to content

Commit

Permalink
Change pycrytpo dependecy with pycryptodome
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Domenico Iezzi committed Oct 12, 2017
1 parent a9a3b51 commit e1cc147
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions setup.py
@@ -1,19 +1,15 @@
from setuptools import setup

setup(
name='gpapi',
version='0.2.1',
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=['pycrypto',
'protobuf',
'clint',
'requests'],
)
setup(name='gpapi',
version='0.2.1',
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',
'clint',
'requests'])

0 comments on commit e1cc147

Please sign in to comment.