add stub for wheel spec
This commit is contained in:
parent
6808f0b1e1
commit
c56a901517
|
@ -81,10 +81,9 @@ a distribution. Major implementations have abbreviated codes, initially:
|
|||
|
||||
Other Python implementations should use `sys.implementation.name`.
|
||||
|
||||
The version is `py_version_nodot`. CPython gets away with no dot, but
|
||||
if one is needed the underscore `_` is used instead. Pypy uses versions that
|
||||
do not track the Python language version and should probably use its own
|
||||
versions here `pp18`, `pp19`.
|
||||
The version is `py_version_nodot`. CPython gets away with no dot,
|
||||
but if one is needed the underscore `_` is used instead. Pypy should
|
||||
probably use its own versions here `pp18`, `pp19`.
|
||||
|
||||
The version can be just the major version `2` or `3` `py2`, `py3` for
|
||||
many pure-Python distributions.
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
PEP: 426
|
||||
Title: The Wheel Binary Package Format 1.0
|
||||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Daniel Holth <dholth@fastmail.fm>
|
||||
Discussions-To: Distutils SIG
|
||||
Status: Draft
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 20 Sep 2012
|
||||
|
||||
|
||||
Abstract
|
||||
========
|
||||
|
||||
This PEP describes a binary format for Python called wheel.
|
||||
|
||||
Copyright
|
||||
=========
|
||||
|
||||
This document has been placed in the public domain.
|
||||
|
||||
|
||||
..
|
||||
Local Variables:
|
||||
mode: indented-text
|
||||
indent-tabs-mode: nil
|
||||
sentence-end-double-space: t
|
||||
fill-column: 70
|
||||
End:
|
Loading…
Reference in New Issue