Changes between Version 30 and Version 31 of Packaging


Ignore:
Timestamp:
2011-11-03T21:13:03Z (13 years ago)
Author:
dloss
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Packaging

    v30 v31  
    1818==== Creating a binary egg for !PyCrypto ====
    1919
    20 Just add this line to setup.py: {{{from setuptools import setup, Extension}}}
     20!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:
    2121
    22 and run: {{{python setup.py bdist_egg}}}
     22{{{$ python -c "import setuptools; execfile('setup.py')" bdist_egg}}}
    2323
    2424== AdvancedInstall ==