From 2c12de983dbfcc26907631401a0169f2a31bc9fd Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Fri, 15 Oct 2021 09:36:01 -0700 Subject: [PATCH 1/2] Update setup.py to use find_packages --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 46ac752..c3c0977 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import os import re -from setuptools import setup +from setuptools import setup, find_packages HERE = os.path.abspath(os.path.dirname(__file__)) @@ -28,7 +28,7 @@ def find_version(*file_paths): setup( name='webauthn', - packages=['webauthn'], + packages=find_packages(exclude=["tests"]), include_package_data=True, version=VERSION, description='Pythonic WebAuthn', From 65f158b4ee27dbf59275478d92c8aaae7c07cdbe Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Fri, 15 Oct 2021 09:36:32 -0700 Subject: [PATCH 2/2] Update version to 1.0.0-beta2 --- webauthn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webauthn/__init__.py b/webauthn/__init__.py index 8b0e956..0d509b2 100644 --- a/webauthn/__init__.py +++ b/webauthn/__init__.py @@ -4,4 +4,4 @@ from .authentication.verify_authentication_response import verify_authentication_response from .helpers import base64url_to_bytes, options_to_json -__version__ = "1.0.0-beta1" +__version__ = "1.0.0-beta2"