2 Commits

3 changed files with 3 additions and 1 deletions
Split View
  1. +1
    -0
      .gitignore
  2. +0
    -0
      cryptography/hazmat/primitives/asymmetric/__init__.py
  3. +2
    -1
      setup.py

+ 1
- 0
.gitignore View File

@@ -1,6 +1,7 @@
.coverage
__pycache__

build
cryptography.egg-info

pycaenv


+ 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