Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0270.py
blobeadd45add4fb33229f28881bcbc88cc44d9a32f3
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_0270(BasePlugin):
14 name = 'xep_0270'
15 description = 'XEP-0270: XMPP Compliance Suites 2010'
16 dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
17 'xep_0163', 'xep_0045', 'xep_0085'])
20 register_plugin(XEP_0270)