Browse Source

find recursive packages, and include them all..

main
John-Mark Gurney 1 year ago
parent
commit
0c61b6d12a
2 changed files with 2 additions and 1 deletions
  1. +0
    -0
      cryptography/hazmat/primitives/asymmetric/__init__.py
  2. +2
    -1
      setup.py

+ 0
- 0
cryptography/hazmat/primitives/asymmetric/__init__.py View File


+ 2
- 1
setup.py View File

@@ -1,11 +1,12 @@
from setuptools import setup, Extension
from setuptools import find_packages

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' ],
packages = find_packages(include=['cryptography*'], ),
extras_require = {
'dev': [ 'coverage' ],
},


Loading…
Cancel
Save