-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload to PyPI #364
Comments
A PyPi package would certainly be useful as it is the most reliable way to share PyQt apps across Linux distributions. Would also love to see this happen. |
That sounds a good idea but I have no experience on creating Python packages with C/C++ codes. Do you have an example |
My experience is limited to python packages, so I'm not sure how it could be done for a package containing CPP source which require build steps and non-python packages such as lxqt-build-tools. Perhaps it should be compiled before hand?
|
I believe the good approach would be to create a python wheel, like PyQt5 uses for PyPi. |
Any workarounds for distributing PyQt applications with QTermWidget? |
I created a pull request to use SIP 5.x for PyQt bindings at #465. As a bonus, the build script now creates a Python wheel. Although it's not suitable for PyPI yet (it requires |
Iam new to pyQT and Iam trying to build python bindings for QtermWidget. I could compile and install qtermwidget library but when i try to create a python wheel using sip-wheel --verbose, i get the below error. cd QTermWidget/ && ( test -e Makefile || /usr/lib/qt5/bin/qmake -o Makefile /tmp/tmp0cyt8_wt/QTermWidget/QTermWidget.pro ) && make -f Makefile |
It would be nice, if this can be publicised on PyPI. The installation is currently hard for Pytjhon developers who haven't worked with C/C++. And it can be added to the requirements, if it's on PyPI.
The text was updated successfully, but these errors were encountered: