diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-10 20:05:25 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-10 20:05:25 -0800 |
commit | a79ce1c35e041c168af72f051829c5576713a186 (patch) | |
tree | dde73c43d63fe6655f306e9b8d7fbf85a9af1c6e /setup.py | |
parent | 1eb69f7075da2b26652c3193494d33b913ef91b1 (diff) | |
parent | 1674bd753eb92b922627489a669ef57ef9853b44 (diff) | |
download | slixmpp-a79ce1c35e041c168af72f051829c5576713a186.tar.gz slixmpp-a79ce1c35e041c168af72f051829c5576713a186.tar.bz2 slixmpp-a79ce1c35e041c168af72f051829c5576713a186.tar.xz slixmpp-a79ce1c35e041c168af72f051829c5576713a186.zip |
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ # file, which you should have received as part of this distribution. import sys +import codecs try: from setuptools import setup, Command except ImportError: @@ -31,7 +32,7 @@ from sleekxmpp.version import __version__ VERSION = __version__ DESCRIPTION = 'SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).' -with open('README.rst') as readme: +with codecs.open('README.rst', 'r', encoding='UTF-8') as readme: LONG_DESCRIPTION = ''.join(readme) CLASSIFIERS = [ 'Intended Audience :: Developers', |