2 Commits

3 changed files with 3 additions and 1 deletions
Unified 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 .coverage
__pycache__ __pycache__


build
cryptography.egg-info cryptography.egg-info


pycaenv 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 setup, Extension
from setuptools import find_packages


setup(name = "cryptography", version = "41.0.5", setup(name = "cryptography", version = "41.0.5",
description = "Emulate cryptography enough for some needs", description = "Emulate cryptography enough for some needs",
author = "John-Mark Gurney", author = "John-Mark Gurney",
author_email = "jmg@funkthat.com", author_email = "jmg@funkthat.com",
url = 'about:blank', url = 'about:blank',
packages = [ 'cryptography' ],
packages = find_packages(include=['cryptography*'], ),
extras_require = { extras_require = {
'dev': [ 'coverage' ], 'dev': [ 'coverage' ],
}, },


Loading…
Cancel
Save