Merge pull request #144 from sblondon/add_vendors_directory_to_package

Add vendors directory to package
This commit is contained in:
Martin Rusev
2018-07-28 17:39:18 +02:00
committed by GitHub
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=(