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.

12 lines
350 B

  1. --- a/setup.py
  2. +++ b/setup.py
  3. @@ -275,6 +275,9 @@ package_data = {
  4. "Crypto.Util" : [ "*.pyi" ],
  5. }
  6. +packages = [i for i in packages if not i.startswith('Crypto.SelfTest')]
  7. +package_data = {k: v for k, v in package_data.items() if not k.startswith('Crypto.SelfTest')}
  8. +
  9. ext_modules = [
  10. # Hash functions
  11. Extension("Crypto.Hash._MD2",