Skip to content

Commit

Permalink
Update encoding to read README #13
Browse files Browse the repository at this point in the history
  • Loading branch information
sharoonthomas committed Sep 7, 2015
1 parent 9902044 commit eff948d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
:copyright: © 2011 by Openlabs Technologies & Consulting (P) Limited
:license: BSD, see LICENSE for more details.
"""
import codecs
from setuptools import setup


Expand All @@ -41,7 +42,9 @@
author="Openlabs Technologies & Consulting (P) Limited",
author_email="[email protected]",
description="Microsoft Translator V2 - Python API",
long_description=open('README.rst').read(),
long_description=codecs.open(
'README.rst', encoding='UTF-8'
).read(),
license="BSD",
keywords="translation microsoft",
url="http://openlabs.co.in/",
Expand Down

1 comment on commit eff948d

@Artoria2e5
Copy link

@Artoria2e5 Artoria2e5 commented on eff948d Oct 19, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Obsoletes #12, #14, #15.

Please sign in to comment.