wonderwordsmodule icon indicating copy to clipboard operation
wonderwordsmodule copied to clipboard

Package does not install required dependencies

Open nralbers opened this issue 2 years ago • 1 comments

Installing wonderwords does not install it's actual dependencies. The contents of requirements.txt should be added to setup.py as package dependencies.

To Reproduce Steps to reproduce the behavior:

  1. pip install wonderwords
  2. wonderwords -s
  3. ModuleNotFoundError: No module named 'rich'

Expected behavior package runs

Desktop (please complete the following information):

  • OS: ubuntu 22.04

nralbers avatar Mar 15 '23 15:03 nralbers

Rich is used only for the command-line interface, so I set it as an optional dependency. To install command-line dependencies, use pip install wonderwords[cli].

mrmaxguns avatar Mar 15 '23 16:03 mrmaxguns