diff options
author | mathieui <mathieui@mathieui.net> | 2017-01-31 00:17:32 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-01-31 00:17:32 +0100 |
commit | 49b785d5be879353c6b1a5f98cfe173d3c8fff15 (patch) | |
tree | 041c7c30999ce1de477db007ddccac1db794ce2d /setup.py | |
parent | 806485dbe02fae15309d8714e1610dc596768994 (diff) | |
download | poezio-59bc0d5c85de5f04889973a4c7ff382944b9e57e.tar.gz poezio-59bc0d5c85de5f04889973a4c7ff382944b9e57e.tar.bz2 poezio-59bc0d5c85de5f04889973a4c7ff382944b9e57e.tar.xz poezio-59bc0d5c85de5f04889973a4c7ff382944b9e57e.zip |
Poezio 0.11 releasev0.11
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,7 +65,7 @@ with open('README.rst', encoding='utf-8') as readme_fd: LONG_DESCRIPTION = readme_fd.read() setup(name="poezio", - version="1.0" + version, + version="0.11", description="A console XMPP client", long_description=LONG_DESCRIPTION, ext_modules=[module_poopt], @@ -104,7 +104,7 @@ setup(name="poezio", ('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG'])] + find_doc('share/doc/poezio/source', 'source') + find_doc('share/doc/poezio/html', 'build/html')), - install_requires=['slixmpp', 'aiodns'], + install_requires=['slixmpp>=1.2.4', 'aiodns'], extras_require={'OTR plugin': 'python-potr>=1.0', 'Screen autoaway plugin': 'pyinotify==0.9.4'}) |