From 7ee30d3ad3b6f888fde3cb4dfa0ee526a92d363c Mon Sep 17 00:00:00 2001 From: daira <> Date: Sun, 16 Jun 2013 22:40:19 +0000 Subject: [PATCH] fix command to build a pyOpenSSL egg [Imported from Trac: page Packaging, version 44] --- Packaging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packaging.md b/Packaging.md index 9da6691..a750267 100644 --- a/Packaging.md +++ b/Packaging.md @@ -47,11 +47,11 @@ The eggs are built from the corresponding source packages: * [zfec](https://pypi.python.org/pypi/zfec) * [zope.interface](https://pypi.python.org/pypi/zope.interface) -Except for PyCrypto (see below), each egg is built by running `python setup.py bdist_egg` in the root of its source distribution. +Except for PyCrypto and pyOpenSSL (see below), each egg is built by running `python setup.py bdist_egg` in the root of its source distribution. -#### Creating a binary egg for PyCrypto +#### Creating a binary egg for PyCrypto or pyOpenSSL -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: +The `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: `$ python -c "import setuptools; __file__ = 'setup.py'; execfile('setup.py')" bdist_egg`