I am creating a project that has dependencies on packages from PyPI. Namely:
['comtypes', 'docx', 'qrcode', 'PyPDF2', 'pyqtgraph', 'PyQt5', 'numpy', 'PIL','opencv-python']
However, some of them (for example opencv-python) contain only wheel files in PyPI. https://pypi.python.org/simple/opencv-python/
In my opinion, setuptools is not compatible with .whl. Is there a way to install dependencies on setup.py, ideally without using pip?
source
share