From 5d3016e1dbd00064f7503623f5993804a457c797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Wed, 3 Jul 2019 17:44:07 +0200 Subject: [PATCH] setup.py: Add tantivy to the optional dependencies. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 9023c46..398bcbe 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,11 @@ setup( "typing;python_version<'3.5'", "matrix-nio[e2e]" ], + extras_require={ + "e2e_search": [ + "tantivy", + ] + }, entry_points={ "console_scripts": ["pantalaimon=pantalaimon.main:main", "panctl=pantalaimon.panctl:main"],