amueller / word_cloud

A little word cloud generator in Python
https://amueller.github.io/word_cloud
MIT License
10.1k stars 2.31k forks source link

file `stopwords` is missing in the final wheel #764

Open hubutui opened 4 months ago

hubutui commented 4 months ago

I build and install word_cloud 1.9.3 with:

python -m build --wheel --no-isolation
python -m installer dist/*.whl

and I got this error:

  File "/usr/lib/python3.12/site-packages/wordcloud/wordcloud.py", line 35, in <module>
    STOPWORDS = set(map(str.strip, open(os.path.join(FILE, 'stopwords')).readlines()))
                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.12/site-packages/wordcloud/stopwords'

quick fix, add these lines to MANIFEST.in:

include wordcloud/DroidSansMono.ttf
include wordcloud/stopwords