Would you be able to publish wheels (.whl) in addition to the source distributions? One advantage to wheels from the python infrastructure standpoint is they install much faster as PyPI is able to pre-resolve the dependencies. And if your package is "pure" python (no C extensions) then building a wheel is very simple.
The command to build both source distribution and wheel is:
Would you be able to publish wheels (.whl) in addition to the source distributions? One advantage to wheels from the python infrastructure standpoint is they install much faster as PyPI is able to pre-resolve the dependencies. And if your package is "pure" python (no C extensions) then building a wheel is very simple.
The command to build both source distribution and wheel is:
Then upload both as usual to PyPI. I would be happy to help if needed, just let me know!
For more into see: https://pythonwheels.com/