Metadata-Version: 1.0
Name: zope.optionalextension
Version: 1.1
Summary: Optional compilation of C extensions
Home-page: http://pypi.python.org/pypi/zope.optionalextension
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ``zope.optionalextension`` README
        =================================
        
        This package provides a distutils extension for building optional C
        extensions.  It is intended for use in projects which have a Python reference
        implementation of one or more features, and which can function without
        needing any C extensions to be successfully compiled.
        
        Using the Command with bare ``distutils``
        -----------------------------------------
        
        In the ``setup.py`` for your package::
        
          from distutils.core import setup
        
          setup(name='your.package',
                ...
                command_packages = ['zope.optionalextension',
                                    'distutils.command',
                                   ]
                ...
               )
        
        You need to ensure that ``zope.optionalextension`` is installed first
        yourself.
        
        
        Using the Command with bare ``setuptools``
        ------------------------------------------
        
        In the ``setup.py`` for your package::
        
          from setuptools import setup 
        
          setup(name='your.package',
                ...
                setup_requires=['zope.optionalextension'],
                command_packages=['zope.optionalextension',
                                  'distutils.command',
                                 ]
                ...
               )
        
        
        ``zope.optionalextension`` Changelog
        =====================================
        
        1.1 (2010-07-03)
        ----------------
        
        - Make the package work as a distutils ``command_packages`` plugin.
        
        
        1.0 (2010-07-03)
        ----------------
        
        - Extracted from ``zope.i18nmessageid`` 3.5.0.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
