up vote
0
down vote
favorite
I have written python code (using pycrypto library)to encrypt data using generate_date_key (AWS KMS API). I have created egg from that file and want to use this egg in databricks. But after importing egg i am still getting error at line. import Crypto.Cipher.AES I guess pycrypto library is not getting included in egg.PFB setup.py from setuptools import setup, find_packages setup( name = "DataKeyEncriptionLib", version = "0.1", packages = find_packages(), install_requires=[ 'pycrypto' ], zip_safe=False, ) Could anyone provide some inputs here. Thanks in Advance
python pycrypto
share | improve this question