declare that tests require mecab-python3

Former-commit-id: 7b4ebd1805
This commit is contained in:
Rob Speer 2015-07-02 11:28:45 -04:00
parent 5e71278781
commit 5d0d5f7cd2

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'],
)