Changes between Version 30 and Version 31 of Packaging
- Timestamp:
- 2011-11-03T21:13:03Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Packaging
v30 v31 18 18 ==== Creating a binary egg for !PyCrypto ==== 19 19 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: 21 21 22 and run: {{{python setup.pybdist_egg}}}22 {{{$ python -c "import setuptools; execfile('setup.py')" bdist_egg}}} 23 23 24 24 == AdvancedInstall ==