python-stringcase
python-stringcase copied to clipboard
wheels in pypi ?
Just a note that I see this warning: Using legacy 'setup.py install' for stringcase, since package 'wheel' is not installed.
When I install stringcase.
Not an issue per se - but would be good to add wheels to pypi Based on the current code - it seems trivial, as its pure python
This warning is about your python installation not having the package wheel installed. You can fix it on your machine with python -m pip install wheel.
Nod, I've done that for my local environment.
Just thought I'd mention it here - as another possible solution is to add wheel files to pypi directly. As wheels are generally recommended by the packaging community I thought it may be something that could be done at the project level.
Do let me know if I can help facilitate it if you think it's a good idea
I am +1 this. For crazy people using pyodide, projects depending on this library (or this library itself) can't be installed if no wheels can be found.
@okunishinishi This came up again for us ... Would you be interested in creating a release if I raise a PR for this