Add imbox/vendors/ directory to python package

This commit is contained in:
Stephane Blondon
2018-07-28 16:13:13 +02:00
parent db30a8044f
commit 7ea534fbda
2 changed files with 2 additions and 5 deletions

View File

@@ -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)

View File

@@ -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=(