diff options
author | Lance Stout <lancestout@gmail.com> | 2014-02-09 14:35:32 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2014-02-09 14:36:36 -0800 |
commit | 158411e918745931429739769ca72080dfb4f07f (patch) | |
tree | 4452c585ac1a87aa6a75bd7c651d35657bc2d293 | |
parent | 3f873002c4632c602696724e00a083f4c381aab9 (diff) | |
download | slixmpp-158411e918745931429739769ca72080dfb4f07f.tar.gz slixmpp-158411e918745931429739769ca72080dfb4f07f.tar.bz2 slixmpp-158411e918745931429739769ca72080dfb4f07f.tar.xz slixmpp-158411e918745931429739769ca72080dfb4f07f.zip |
Include stanza dirs
-rwxr-xr-x | setup.py | 6 | ||||
-rw-r--r-- | sleekxmpp/version.py | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -87,8 +87,8 @@ packages = [ 'sleekxmpp', 'sleekxmpp/plugins/xep_0086', 'sleekxmpp/plugins/xep_0091', 'sleekxmpp/plugins/xep_0092', - 'sleekxmpp/plugins/xep_0095', - 'sleekxmpp/plugins/xep_0096', + 'sleekxmpp/plugins/xep_0095', + 'sleekxmpp/plugins/xep_0096', 'sleekxmpp/plugins/xep_0107', 'sleekxmpp/plugins/xep_0108', 'sleekxmpp/plugins/xep_0115', @@ -120,7 +120,9 @@ packages = [ 'sleekxmpp', 'sleekxmpp/plugins/xep_0313', 'sleekxmpp/plugins/xep_0319', 'sleekxmpp/plugins/xep_0323', + 'sleekxmpp/plugins/xep_0323/stanza', 'sleekxmpp/plugins/xep_0325', + 'sleekxmpp/plugins/xep_0325/stanza', 'sleekxmpp/plugins/google', 'sleekxmpp/plugins/google/gmail', 'sleekxmpp/plugins/google/auth', diff --git a/sleekxmpp/version.py b/sleekxmpp/version.py index 4af6125b..33f7ccdd 100644 --- a/sleekxmpp/version.py +++ b/sleekxmpp/version.py @@ -9,5 +9,5 @@ # We don't want to have to import the entire library # just to get the version info for setup.py -__version__ = '1.2.1' -__version_info__ = (1, 2, 1, '', 0) +__version__ = '1.2.2' +__version_info__ = (1, 2, 2, '', 0) |