Metadata-Version: 1.0
Name: zope.optionalextension
Version: 1.0
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
        -----------------
        
        In the ``setup.py`` for your package::
        
          from distutils import setup # or setuptools
          from zope.optionalextension import optional_build_ext
        
          setup(name='your.package',
                ...
                cmdclass = {'build_ext': optional_build_ext,
                            },
                ...
               )
        
        
        ``zope.optionalextension`` Changelog
        =====================================
        
        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
