diff options
author | Lance Stout <lancestout@gmail.com> | 2010-12-16 21:15:13 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-12-16 21:15:13 -0500 |
commit | f9ac95ddb74015e0725ff8a7cf05d90adcf3bbd5 (patch) | |
tree | 210a2acc458a01d9174f342523f5f647106b607a | |
parent | 0ea014fe41c131629a39b785d23c3e6b7112644a (diff) | |
download | slixmpp-f9ac95ddb74015e0725ff8a7cf05d90adcf3bbd5.tar.gz slixmpp-f9ac95ddb74015e0725ff8a7cf05d90adcf3bbd5.tar.bz2 slixmpp-f9ac95ddb74015e0725ff8a7cf05d90adcf3bbd5.tar.xz slixmpp-f9ac95ddb74015e0725ff8a7cf05d90adcf3bbd5.zip |
Need to update setup.py with new XEP-0030 packages.
Will need to remember to update setup.py when transitioning
plugins to the new layout.
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -38,13 +38,15 @@ CLASSIFIERS = [ 'Intended Audience :: Developers', ]
packages = [ 'sleekxmpp',
- 'sleekxmpp/plugins',
'sleekxmpp/stanza',
'sleekxmpp/test',
'sleekxmpp/xmlstream',
'sleekxmpp/xmlstream/matcher',
'sleekxmpp/xmlstream/handler',
'sleekxmpp/thirdparty',
+ 'sleekxmpp/plugins',
+ 'sleekxmpp/plugins/xep_0030',
+ 'sleekxmpp/plugins/xep_0030/stanza'
]
if sys.version_info < (3, 0):
|