From 19e74e91c64c425602dbca74e5559e53223634a9 Mon Sep 17 00:00:00 2001 From: Rob Speer Date: Thu, 2 Jul 2015 17:11:51 -0400 Subject: [PATCH] declare 'mecab' as an extra Former-commit-id: a69ea5ad52f1703689794af306c15a18599a1284 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index fa72682..9610613 100755 --- a/setup.py +++ b/setup.py @@ -50,5 +50,8 @@ setup( # turn, it depends on libmecab-dev being installed on the system. It's not # listed under 'install_requires' because wordfreq should be usable in # other languages without it. + extras_require={ + 'mecab': 'mecab-python3' + }, tests_require=['mecab-python3'], )