Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ <h3 id="pure-wheel">Pure Python</h3>
<pre>
pip install wheel</pre>
<p>&hellip;and when you'd normally run <code>python setup.py sdist</code>, run instead <code>python setup.py sdist bdist_wheel</code>. For a more in-depth explanation, see this guide on <a href="https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/">sharing your labor of love</a>.</p>
<p><em>Note: </em>If your project is Python 2 and 3 compatible you can create a universal wheel distribution. Create a file called <code>setup.cfg</code> with the following content and upload your package.</p>
<pre>
[bdist_wheel]
universal = 1</pre>
<p><strong>Warning: </strong>If your project has optional C extensions, it is recommended not to publish a universal wheel, because pip will prefer the wheel over a source installation.</p>
<p><em>Note: </em>To include your project's license file in the wheel distribution, specify the <code>license_files</code> key in the <code>[metadata]</code> section. This helps comply with many open source licenses that require the license text to be included in every distributable artifact of the project. This option requires wheel 0.32 or newer.</p>
<pre>
[metadata]
Expand Down