declare that tests require mecab-python3

This commit is contained in:
Rob Speer 2015-07-02 11:28:45 -04:00
parent 2acca8a27a
commit 7b4ebd1805

View File

@ -45,4 +45,10 @@ setup(
packages=['wordfreq'],
include_package_data=True,
install_requires=dependencies,
# mecab-python3 is required for looking up Japanese word frequencies. In
# 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.
tests_require=['mecab-python3'],
)