-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add wheel package file format support #3
Comments
I’m not familiar with PyScript or wheel files so bare with me. How does it help that I have a .whl file in my dist directory? I’m not sure I understand what you’re proposing. |
Sorry for my poor explanation If you have a Many of Python packages, are published both Even if there are pure-python packages, which doesn't need some complex compile steps, we still need to build and upload a So I think publishing a package with |
Got it, so it's really a change in release process.
I really hate Python packaging.
And wasn't setuptools deprecated or something? Or was it distutils... With
current setup.py bdist_wheel isn't actually available because it doesn't
use setuptools. I guess I'll have to now take a look into that...
|
Some special runtimes, for example,
PyScript
only accept wheel format of package.Since this package is a pure-python implementation, in this case, we can easily build the
.whl
package bypython setup.py bdist_wheel
command before you publish.Anyway, thank you for your continuously maintain this package.
The text was updated successfully, but these errors were encountered: