A wrapper to present a cryptography api but use the pycryptodome module.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
407 B

  1. from setuptools import setup, Extension
  2. setup(name = "cryptography", version = "41.0.5",
  3. description = "Emulate cryptography enough for some needs",
  4. author = "John-Mark Gurney",
  5. author_email = "jmg@funkthat.com",
  6. url = 'about:blank',
  7. packages = [ 'cryptography' ],
  8. extras_require = {
  9. 'dev': [ 'coverage' ],
  10. },
  11. install_requires=[
  12. 'pycryptodome',
  13. ],
  14. )