Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0302.py
blobdee60f9164bbadae87bbb8727a548f39b1f3a8e7
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 import BasePlugin, register_plugin
12 class XEP_0302(BasePlugin):
14 name = 'xep_0302'
15 description = 'XEP-0302: XMPP Compliance Suites 2012'
16 dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
17 'xep_0163', 'xep_0045', 'xep_0085',
18 'xep_0184', 'xep_0198'])
21 register_plugin(XEP_0302)