blob: 36ad92d82243c4a7bb1d524d744e101d23a891e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.1.0dev'
__version_info__ = (1, 1, 0, 'dev', 0)
|