mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
parent
c578ddeb1a
commit
1674bd753e
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -8,6 +8,7 @@
|
||||||
# file, which you should have received as part of this distribution.
|
# file, which you should have received as part of this distribution.
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
import codecs
|
||||||
try:
|
try:
|
||||||
from setuptools import setup, Command
|
from setuptools import setup, Command
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
@ -31,7 +32,7 @@ from sleekxmpp.version import __version__
|
||||||
|
|
||||||
VERSION = __version__
|
VERSION = __version__
|
||||||
DESCRIPTION = 'SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).'
|
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)
|
LONG_DESCRIPTION = ''.join(readme)
|
||||||
|
|
||||||
CLASSIFIERS = [ 'Intended Audience :: Developers',
|
CLASSIFIERS = [ 'Intended Audience :: Developers',
|
||||||
|
|
Loading…
Reference in a new issue