mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
4d6e7c7dbb
XEP-0092 now uses sleekxmpp.__version__ as a default version number.
19 lines
627 B
Python
19 lines
627 B
Python
"""
|
|
SleekXMPP: The Sleek XMPP Library
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
|
This file is part of SleekXMPP.
|
|
|
|
See the file LICENSE for copying permission.
|
|
"""
|
|
|
|
from sleekxmpp.basexmpp import BaseXMPP
|
|
from sleekxmpp.clientxmpp import ClientXMPP
|
|
from sleekxmpp.componentxmpp import ComponentXMPP
|
|
from sleekxmpp.stanza import Message, Presence, Iq
|
|
from sleekxmpp.xmlstream.handler import *
|
|
from sleekxmpp.xmlstream import XMLStream, RestartStream
|
|
from sleekxmpp.xmlstream.matcher import *
|
|
from sleekxmpp.xmlstream.stanzabase import StanzaBase, ET
|
|
|
|
__version__ = '1.0beta6'
|
|
__version_info__ = (1, 0, 0, 'beta6', 0)
|