diff options
author | mathieui <mathieui@mathieui.net> | 2020-11-27 18:34:31 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-11-27 19:44:13 +0100 |
commit | ddc3974d1b4cadf6ec0e830bad5379f9b87c8ee0 (patch) | |
tree | b6038c68c25caad232d2ec4906290615eb10b94f /setup.py | |
parent | 9b5ab741c83b33a466664f360247488d1484f9a2 (diff) | |
download | slixmpp-ddc3974d1b4cadf6ec0e830bad5379f9b87c8ee0.tar.gz slixmpp-ddc3974d1b4cadf6ec0e830bad5379f9b87c8ee0.tar.bz2 slixmpp-ddc3974d1b4cadf6ec0e830bad5379f9b87c8ee0.tar.xz slixmpp-ddc3974d1b4cadf6ec0e830bad5379f9b87c8ee0.zip |
Update protoxep_reactions to XEP-0444
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,6 +30,7 @@ CLASSIFIERS = [ 'Programming Language :: Python', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Internet :: XMPP', 'Topic :: Software Development :: Libraries :: Python Modules', ] @@ -82,7 +83,7 @@ setup( platforms=['any'], packages=packages, ext_modules=ext_modules, - install_requires=['aiodns>=1.0', 'pyasn1', 'pyasn1_modules', 'aiohttp'], + install_requires=['aiodns>=1.0', 'pyasn1', 'pyasn1_modules', 'aiohttp', 'emoji'], classifiers=CLASSIFIERS, cmdclass={'test': TestCommand} ) |