summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-04-08 16:39:39 -0400
committerLance Stout <lancestout@gmail.com>2011-04-08 16:39:39 -0400
commit87ccd804ff346f3c2aa06b2be9479b1f82817c12 (patch)
treece58d36084a7f55424aef571bed7c6da3455fd49
parentd7ba7cc72a65d005ba3702b4254609f6da6a80ca (diff)
downloadslixmpp-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__.
-rw-r--r--sleekxmpp/__init__.py3
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)