Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0033 / __init__.py
blobba8152c4076fd881ba60a9ebe88132b12ccbcce0
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of SleekXMPP.
6 See the file LICENSE for copying permission.
7 """
9 from sleekxmpp.plugins.base import register_plugin
11 from sleekxmpp.plugins.xep_0033 import stanza
12 from sleekxmpp.plugins.xep_0033.stanza import Addresses, Address
13 from sleekxmpp.plugins.xep_0033.addresses import XEP_0033
16 register_plugin(XEP_0033)
18 # Retain some backwards compatibility
19 xep_0033 = XEP_0033
20 Addresses.addAddress = Addresses.add_address