version.py 332 B

12345678910111213
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2010 Nathanael C. Fritz
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. # We don't want to have to import the entire library
  8. # just to get the version info for setup.py
  9. __version__ = '1.3.2'
  10. __version_info__ = (1, 3, 2, '', 0)