summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-12 16:30:34 +0100
committermathieui <mathieui@mathieui.net>2020-12-12 16:30:34 +0100
commit31841ef3bf2fbb62d4b9de2166f43e9c02cfb054 (patch)
tree8afb70bdaaadf5c33e7fa453ef08ded3b17e0e18
parent6773dc4409d5a8b304b296336090275703ba4687 (diff)
downloadslixmpp-31841ef3bf2fbb62d4b9de2166f43e9c02cfb054.tar.gz
slixmpp-31841ef3bf2fbb62d4b9de2166f43e9c02cfb054.tar.bz2
slixmpp-31841ef3bf2fbb62d4b9de2166f43e9c02cfb054.tar.xz
slixmpp-31841ef3bf2fbb62d4b9de2166f43e9c02cfb054.zip
setup.py: Move emoji and aiohttp to extras_require
-rwxr-xr-xsetup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9ba0b5df..c453f151 100755
--- a/setup.py
+++ b/setup.py
@@ -83,7 +83,11 @@ setup(
platforms=['any'],
packages=packages,
ext_modules=ext_modules,
- install_requires=['aiodns>=1.0', 'pyasn1', 'pyasn1_modules', 'aiohttp', 'emoji'],
+ install_requires=['aiodns>=1.0', 'pyasn1', 'pyasn1_modules'],
+ extras_require={
+ 'XEP-0363': ['aiohttp'],
+ 'XEP-0444 compliance': ['emoji'],
+ },
classifiers=CLASSIFIERS,
cmdclass={'test': TestCommand}
)