small documentation fixes

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

View File

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

View File

@ -49,9 +49,8 @@ setup(
install_requires=dependencies, install_requires=dependencies,
# mecab-python3 is required for looking up Japanese or Korean word # mecab-python3 is required for looking up Japanese or Korean word
# frequencies. In turn, it depends on libmecab-dev being installed on the # frequencies. It's not listed under 'install_requires' because wordfreq
# system. It's not listed under 'install_requires' because wordfreq should # should be usable in other languages without it.
# be usable in other languages without it.
# #
# Similarly, jieba is required for Chinese word frequencies. # Similarly, jieba is required for Chinese word frequencies.
extras_require={ extras_require={