Re: [Distutils] install_requires setup.py install vs pip install

2017-03-07 Thread Tim Golden
On 07/03/2017 14:38, Leonardo Rochael Almeida wrote: Hi Tim, The reason setuptools can't process your package is because setuptools itself doesn't yet know how to install wheels[1] which pip knows how to install, and PyQT5 is only available as wheels on PyPI (the files with `.whl` extension in

Re: [Distutils] install_requires setup.py install vs pip install

2017-03-07 Thread Leonardo Rochael Almeida
Hi Tim, The reason setuptools can't process your package is because setuptools itself doesn't yet know how to install wheels[1] which pip knows how to install, and PyQT5 is only available as wheels on PyPI (the files with `.whl` extension in the `simple` URL you linked). [1]

[Distutils] install_requires setup.py install vs pip install

2017-03-07 Thread Tim Golden
I have a setup.py which looks like this: from setuptools import setup setup( name='install_requires', py_modules = ["install_requires"], install_requires=['PyQt5'], ) For the purposes of the discussion, there is an install_requires.py in the same directory. I have created and