You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the requirements file contains packages relevant to building up the docs, but not all necessary packages to installing whynot.
I propose using the setup.py file to separate the different necessary packages:
delete the requirements.txt file as it will be no longer needed
users will now be able to choose the different pkgs they wish to install pip install -e . will install whynot alone. pip install -e ".[test, docs]". would install both whynot and the pkgs necessary for test and docs, for example.
The text was updated successfully, but these errors were encountered:
Currently the requirements file contains packages relevant to building up the docs, but not all necessary packages to installing
whynot
.I propose using the
setup.py
file to separate the different necessary packages:That will allow us to:
pip install -e .
will installwhynot
alone.pip install -e ".[test, docs]".
would install bothwhynot
and the pkgs necessary for test and docs, for example.The text was updated successfully, but these errors were encountered: