from setuptools import setup, Extension setup(name = "cryptography", version = "41.0.5", description = "Emulate cryptography enough for some needs", author = "John-Mark Gurney", author_email = "jmg@funkthat.com", url = 'about:blank', packages = [ 'cryptography' ], extras_require = { 'dev': [ 'coverage' ], }, install_requires=[ 'pycryptodome', ], )