I want to write simple GUI tools for new hardware developed in my company. I need to use python because my company uses a lot of old libraries. My idea is now to use Python and PyQt to write the application and use pyinstaller to deploy it to other colleagues (installing python everywhere is not what we want). It works pretty good so far, but when i try to use plotting libraries, as for instance PyQwt, the size of the executable increases from approximediatly 15MB to 120MB. I found out that this is because PyQwt supports NumPy. However, I don't need NumPy for my projects.
I found a couple of plotting tools as for instance: PyQwt, Matplotlib, PyQtGraph However, all of them use Numpy.
My question is: Is there a plotting tool or framework for PyQt/PySide that does not require Numpy?
What I need to plot is simple sequential data. For instance a sensor delivers a temperature every second and I want to see the last 20 temperatures in a y/t diagram.
Idealy a PyQwt without numpy. The PyQwt homepage says NumPy is optional. Is it eventually possible to configure PyInstaller in a way to skip numpy?
Thank you very much for your help!
My System: Windows 7 PythonXY 2.7.10 PyQT4