Upload wheels to PyPI
See original GitHub issueWheels (.whl
) for this package are currently missing from PyPI. Could wheels be uploaded for the current and future releases?
Read more about the advantages of wheels to understand why generating wheel distributions are important.
To create a wheel along with source distribution:
(venv) $ pip install --upgrade pip setuptools wheel
(venv) $ python setup.py sdist bdist_wheel
# See dist/*.whl
To upload wheels:
(venv) $ pip install twine
(venv) $ twine upload dist/*
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Building and Uploading to PyPi - The Sheer Joy of Packaging!
It is a build frontend that can takes arbitrary source trees or source distributions and builds wheels from them. Reference: http://pip.readthedocs.io/ ...
Read more >How do you upload a single wheel file to a pypi server?
Yes! Just change to the directory where your wheel file is, then... pip install twine twine upload file_name.whl --repository-url ...
Read more >How to Upload Your Python Package to PyPI and pip
Step 1: Ensure you have pip installed · Step 3: Package your Python code · Step 3: Create the source distribution of the...
Read more >How to upload your python package to PyPi - Medium
This is easy. Simply upload your new code to github, create a new release, then adapt the setup.py file (new download_url — according...
Read more >How to Publish an Open-Source Python Package to PyPI
PEP 427 describes how wheels should be packaged. ... upload to PyPI, typically in the wheel or the source distribution (sdist) format.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’d be happy to do this, should @lepture provide me with the ability to uplaod on PyPI.
Uploaded a wheel for 2.6.3.
That deprecation is related to the fact that you don’t have the
wheel
package installed in the virtual environment you’re building/installing this package in; and is more related to the fact that pip is gonna change its behaviour soon. 😃