mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 20:51:49 +02:00
Fix encoding errors for python 2
This commit is contained in:
parent
6a712b9cbd
commit
78ddd3fd8d
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -43,7 +43,7 @@ ENTRY_POINTS = {
|
||||||
setup(name='ihatemoney',
|
setup(name='ihatemoney',
|
||||||
version='1.1.dev0',
|
version='1.1.dev0',
|
||||||
description='A simple shared budget manager web application.',
|
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',
|
license='Custom BSD Beerware',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
|
|
Loading…
Reference in a new issue