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
It would be nice to be able to do an install like pip install cutelog[pyqt5] and have it also install the qt libraries. This would come in handy in cases like when you want to use it as a standalone app via pipx where it is not as easy to install additional requirements in that venv yourself.
They are fairley easy to add to setup.py, i.e.:
extras_require={
"pyqt5": ["pyqt5"]
}
It also wouldn't change any current usage, as it will still support pip install cutelog without any of those included.
It would be nice to be able to do an install like
pip install cutelog[pyqt5]
and have it also install theqt
libraries. This would come in handy in cases like when you want to use it as a standalone app viapipx
where it is not as easy to install additional requirements in that venv yourself.They are fairley easy to add to
setup.py
, i.e.:It also wouldn't change any current usage, as it will still support
pip install cutelog
without any of those included.https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies
The text was updated successfully, but these errors were encountered: