add stub for wheel spec

This commit is contained in:
Daniel Holth 2012-09-20 18:43:53 -04:00
parent 6808f0b1e1
commit c56a901517
2 changed files with 33 additions and 4 deletions

View File

@ -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.

30
pep-0427.txt Normal file
View File

@ -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: