small documentation fixes

This commit is contained in:
Robyn Speer 2021-03-29 16:41:47 -04:00
parent 4c0b29f460
commit 4263f1af14
2 changed files with 3 additions and 4 deletions

View File

@ -387,7 +387,7 @@ the 'cjk' feature:
pip install wordfreq[cjk]
Tokenizing Chinese depends on the `jieba` package, tokenizing Japanese depends
on `mecab-python` and `ipadic`, and tokenizing Korean depends on `mecab-python`
on `mecab-python3` and `ipadic`, and tokenizing Korean depends on `mecab-python3`
and `mecab-ko-dic`.
As of version 2.4.2, you no longer have to install dictionaries separately.

View File

@ -49,9 +49,8 @@ setup(
install_requires=dependencies,
# mecab-python3 is required for looking up Japanese or Korean 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.
# frequencies. It's not listed under 'install_requires' because wordfreq
# should be usable in other languages without it.
#
# Similarly, jieba is required for Chinese word frequencies.
extras_require={