Changes between Version 43 and Version 44 of Packaging
- Timestamp:
- 2013-06-16T22:40:19Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Packaging
v43 v44 48 48 * [https://pypi.python.org/pypi/zope.interface zope.interface] 49 49 50 Except for !PyCrypto (see below), each egg is built by running {{{python setup.py bdist_egg}}} in the root of its source distribution.50 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. 51 51 52 ==== Creating a binary egg for !PyCrypto ====52 ==== Creating a binary egg for !PyCrypto or pyOpenSSL ==== 53 53 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:54 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: 55 55 56 56 {{{$ python -c "import setuptools; __file__ = 'setup.py'; execfile('setup.py')" bdist_egg}}}