-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
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:
install_requires=[
],
extras_require={
"test": [
],
"examples": [
],
"docs": [
],
}
That will allow us to:
- 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 installwhynotalone.
pip install -e ".[test, docs]".would install bothwhynotand the pkgs necessary for test and docs, for example.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels