Fix encoding errors for python 2

This commit is contained in:
Alexis Métaireau 2017-06-21 01:19:24 +02:00
parent 6a712b9cbd
commit 78ddd3fd8d

View file

@ -43,7 +43,7 @@ ENTRY_POINTS = {
setup(name='ihatemoney',
version='1.1.dev0',
description='A simple shared budget manager web application.',
long_description="{}\n\n{}".format(README, CHANGELOG),
long_description="{}\n\n{}".format(README.encode('utf-8'), CHANGELOG.encode('utf-8')),
license='Custom BSD Beerware',
classifiers=[
"Programming Language :: Python",