mbi / django-simple-captcha

Django Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form.
http://django-simple-captcha.readthedocs.io/en/latest/
MIT License
1.38k stars 322 forks source link

Publish wheel #207

Closed vsalvino closed 2 years ago

vsalvino commented 3 years ago

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:

$ pip install wheel
$ python setup.py sdist bdist_wheel

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/

mbi commented 2 years ago

0.5.15 published with wheel. :+1: