Changes between Version 43 and Version 44 of Packaging


Ignore:
Timestamp:
2013-06-16T22:40:19Z (11 years ago)
Author:
daira
Comment:

fix command to build a pyOpenSSL egg

Legend:

Unmodified
Added
Removed
Modified
  • Packaging

    v43 v44  
    4848 * [https://pypi.python.org/pypi/zope.interface zope.interface]
    4949
    50 Except for !PyCrypto (see below), each egg is built by running {{{python setup.py bdist_egg}}} in the root of its source distribution.
     50Except for !PyCrypto and pyOpenSSL (see below), each egg is built by running {{{python setup.py bdist_egg}}} in the root of its source distribution.
    5151
    52 ==== Creating a binary egg for !PyCrypto ====
     52==== Creating a binary egg for !PyCrypto or pyOpenSSL ====
    5353
    54 !PyCrypto's {{{setup.py}}} does not support setuptools, so the {{{bdist_egg}}} target is not available out of the box. To build an egg, use the following command:
     54The {{{setup.py}}} of these packages does not support setuptools, so the {{{bdist_egg}}} target is not available out of the box. To build an egg, use the following command:
    5555
    5656{{{$ python -c "import setuptools; __file__ = 'setup.py'; execfile('setup.py')" bdist_egg}}}