From 7ea534fbda1de05db985515251641dc41a994281 Mon Sep 17 00:00:00 2001 From: Stephane Blondon Date: Sat, 28 Jul 2018 16:13:13 +0200 Subject: [PATCH] Add imbox/vendors/ directory to python package --- imbox/utils.py | 5 +---- setup.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/imbox/utils.py b/imbox/utils.py index 3b4949b..e82deb8 100644 --- a/imbox/utils.py +++ b/imbox/utils.py @@ -3,10 +3,7 @@ logger = logging.getLogger(__name__) def str_encode(value='', encoding=None, errors='strict'): - logger.debug("Encode str {value} with encoding {encoding} and errors {errors}".format( - value=value, - encoding=encoding, - errors=errors)) + logger.debug("Encode str {} with and errors {}".format(value, encoding, errors)) return str(value, encoding, errors) diff --git a/setup.py b/setup.py index 2e7affa..5db6d82 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( author_email='martin@amon.cx', url='https://github.com/martinrusev/imbox', license='MIT', - packages=['imbox'], + packages=['imbox', 'imbox.vendors'], package_dir={'imbox': 'imbox'}, zip_safe=False, classifiers=(