Skip to content

Commit

Permalink
Merge pull request #97 from duo-labs/fix-setup-py
Browse files Browse the repository at this point in the history
fix-setup-py
  • Loading branch information
MasterKale committed Oct 15, 2021
2 parents 00e5dc8 + 65f158b commit 3649f68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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__))
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion webauthn/__init__.py
Expand Up @@ -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"

0 comments on commit 3649f68

Please sign in to comment.