Skip to content

Commit

Permalink
fix packaging fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Norvell committed Aug 3, 2020
1 parent 476eec8 commit ed2387d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nexus_keycode/protocols/full.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ def __init__(self, full_id, message_type, body, secret_key, is_factory):
:param message_type: integer value for the message type
:type message_type: :class:`FullMessageType`
:param body: arbitrary digits of message body
:type body: :class:`str`
:type body: :class:`bytes`
:param secret_key: secret hash key (requires 16 bytes, uses first 16)
:type secret_key: `str`
:type secret_key: `bytes`
"""

if message_type not in [e for e in FullMessageType]:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

setuptools.setup(
name="nexus_keycode",
packages=["nexus_keycode"],
packages=setuptools.find_packages(),
license="MIT",
version="1.1.0",
version="1.1.1",
author="Angaza, Inc.",
author_email="[email protected]",
description="Angaza Nexus backend libraries for managing PAYG devices",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/angaza/nexus-python",
download_url="https://github.com/angaza/nexus-python/releases/download/1.1.0/nexus_keycode-1.1.0.tar.gz",
download_url="https://github.com/angaza/nexus-python/releases/download/1.1.1/nexus_keycode-1.1.1.tar.gz",
install_requires=["bitstring>=3.0.2", "enum34==1.1.6", "siphash==0.0.1"],
test_suite="nose2.collector",
include_package_data=True,
Expand Down

0 comments on commit ed2387d

Please sign in to comment.