diff options
author | Lance Stout <lancestout@gmail.com> | 2011-04-08 16:39:39 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-04-08 16:39:39 -0400 |
commit | 87ccd804ff346f3c2aa06b2be9479b1f82817c12 (patch) | |
tree | ce58d36084a7f55424aef571bed7c6da3455fd49 /sleekxmpp | |
parent | d7ba7cc72a65d005ba3702b4254609f6da6a80ca (diff) | |
download | slixmpp-87ccd804ff346f3c2aa06b2be9479b1f82817c12.tar.gz slixmpp-87ccd804ff346f3c2aa06b2be9479b1f82817c12.tar.bz2 slixmpp-87ccd804ff346f3c2aa06b2be9479b1f82817c12.tar.xz slixmpp-87ccd804ff346f3c2aa06b2be9479b1f82817c12.zip |
Add version info.
May now use sleekxmpp.__version__ and sleekxmpp.__version_info__.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py index 20f43671..5ad11742 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -14,3 +14,6 @@ from sleekxmpp.xmlstream.handler import * from sleekxmpp.xmlstream import XMLStream, RestartStream from sleekxmpp.xmlstream.matcher import * from sleekxmpp.xmlstream.stanzabase import StanzaBase, ET + +__version__ = '1.0beta5' +__version_info__ = (1, 0, 0, 'beta5', 0) |