Favour rsa module over PyCrypto since the former is pure Python

This commit is contained in:
Lonami Exo
2017-08-24 18:39:38 +02:00
parent b7dbf9767e
commit 98bbcb6cd6
3 changed files with 13 additions and 5 deletions

View File

@@ -94,5 +94,5 @@ if __name__ == '__main__':
'telethon_generator', 'telethon_tests', 'run_tests.py',
'try_telethon.py'
]),
install_requires=['pyaes', 'pycrypto']
install_requires=['pyaes', 'rsa']
)