PlotPyStack / PythonQwt

Qt plotting widgets for Python (pure Python reimplementation of Qwt C++ library)
https://pypi.org/project/PythonQwt/
Other
87 stars 25 forks source link

a wheel would allow me to put it in the same requirement.txt file as numpy #10

Closed stonebig closed 9 years ago

stonebig commented 9 years ago

I whish a wheel, otherwise pip will try to compile it into a wheel without keeping the order in the requirement.txt file, and fail because numpy is not yet installed. and so I need 2 requirements files

PierreRaybaut commented 9 years ago

Ok. Do you mean that you need that I upload a wheel package in PyPI? Can I upload both (.zip and wheel) or is it an issue somehow?

stonebig commented 9 years ago

You shall do both, as I think it's the best practice. By default, pip select the wheel when available (from your os/python version, ...)

When there is no compiled code (but compiled sphinx documentation for example), it's:

python setup.py sdist bdist_wheel  --universal
twine upload dist/*
PierreRaybaut commented 9 years ago

Done!

stonebig commented 9 years ago

thanks !