Re: pyqt5 and entrypoint

2020-02-02 Thread Dmitry Shachnev
Hi, On Sun, Feb 02, 2020 at 08:21:51PM +, PICCA Frederic-Emmanuel wrote: > Hello, > > We are working on the next pyfai package. > > This new version use entry_points like this > [...] > > But once installed, we can not start the gui application. > [...] > > pkg_resources.DistributionNotFound:

pyqt5 and entrypoint

2020-02-02 Thread PICCA Frederic-Emmanuel
Hello, We are working on the next pyfai package. This new version use entry_points like this gui_requires = ['PyQt5', 'h5py', 'hdf5plugin', 'PyOpenGL'] opencl_requires = ['pyopencl'] extras_require = { 'calib2': gui_requires, # Keep compatibility 'gui': gui_requires,