smihica / pyminizip

To create a password encrypted zip file in python.
Other
106 stars 37 forks source link

No bdist_wheel package available on pypi.python.org #11

Open tpost opened 7 years ago

tpost commented 7 years ago

Only the source is available on pypi.python.org, so users must first install 'zlib' before running pip install pyminizip. If pyminizip were also distributed as a binary wheel package, then that extra manual step would be eliminated. This would be helpful for people installing pyminizip in a virtualenv or for downstream PIP projects that depend on pyminizip.

This could be done by running the following on a system with zlib already installed:

pip install twine
pip install wheel
python setup.py sdist bdist_wheel
twine upload dist/*