We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9902044 commit eff948dCopy full SHA for eff948d
setup.py
@@ -26,6 +26,7 @@
26
:copyright: © 2011 by Openlabs Technologies & Consulting (P) Limited
27
:license: BSD, see LICENSE for more details.
28
"""
29
+import codecs
30
from setuptools import setup
31
32
@@ -41,7 +42,9 @@
41
42
author="Openlabs Technologies & Consulting (P) Limited",
43
author_email="[email protected]",
44
description="Microsoft Translator V2 - Python API",
- long_description=open('README.rst').read(),
45
+ long_description=codecs.open(
46
+ 'README.rst', encoding='UTF-8'
47
+ ).read(),
48
license="BSD",
49
keywords="translation microsoft",
50
url="http://openlabs.co.in/",
0 commit comments