diff options
Diffstat (limited to 'sleekxmpp/version.py')
-rw-r--r-- | sleekxmpp/version.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sleekxmpp/version.py b/sleekxmpp/version.py new file mode 100644 index 00000000..33c7583e --- /dev/null +++ b/sleekxmpp/version.py @@ -0,0 +1,13 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +# We don't want to have to import the entire library +# just to get the version info for setup.py + +__version__ = '1.0rc2' +__version_info__ = (1, 0, 0, 'rc2', 0) |