xep_0242.py 547 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_0242(BasePlugin):
  9. name = 'xep_0242'
  10. description = 'XEP-0242: XMPP Client Compliance 2009'
  11. dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
  12. 'xep_0045', 'xep_0085', 'xep_0016',
  13. 'xep_0191'])
  14. register_plugin(XEP_0242)