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.
 
 

17 lines
468 B

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