xep_0302.py 559 B

123456789101112131415161718192021
  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.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.plugins import BasePlugin, register_plugin
  8. class XEP_0302(BasePlugin):
  9. name = 'xep_0302'
  10. description = 'XEP-0302: XMPP Compliance Suites 2012'
  11. dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
  12. 'xep_0163', 'xep_0045', 'xep_0085',
  13. 'xep_0184', 'xep_0198'])
  14. register_plugin(XEP_0302)