Merge pull request #144 from sblondon/add_vendors_directory_to_package
Add vendors directory to package
This commit is contained in:
@@ -3,10 +3,7 @@ logger = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
def str_encode(value='', encoding=None, errors='strict'):
|
def str_encode(value='', encoding=None, errors='strict'):
|
||||||
logger.debug("Encode str {value} with encoding {encoding} and errors {errors}".format(
|
logger.debug("Encode str {} with and errors {}".format(value, encoding, errors))
|
||||||
value=value,
|
|
||||||
encoding=encoding,
|
|
||||||
errors=errors))
|
|
||||||
return str(value, encoding, errors)
|
return str(value, encoding, errors)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -19,7 +19,7 @@ setup(
|
|||||||
author_email='martin@amon.cx',
|
author_email='martin@amon.cx',
|
||||||
url='https://github.com/martinrusev/imbox',
|
url='https://github.com/martinrusev/imbox',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
packages=['imbox'],
|
packages=['imbox', 'imbox.vendors'],
|
||||||
package_dir={'imbox': 'imbox'},
|
package_dir={'imbox': 'imbox'},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=(
|
classifiers=(
|
||||||
|
|||||||
Reference in New Issue
Block a user