Metadata-Version: 1.1
Name: csscompressor
Version: 0.9.0
Summary: A python port of YUI CSS Compressor
Home-page: http://github.com/sprymix/csscompressor
Author: Yury Selivanov
Author-email: info@sprymix.com
License: BSD
Description: Almost exact port of YUI CSS Compressor.
        Passes all original unittests.
        
        
        Usage
        =====
        
        .. code:: pycon
        
            >>> from csscompressor import compress
            >>> compress('''
            ...    your css {
            ...        content: "!";
            ...    }
            ... ''')
            'your css{content:"!"}'
        
        
        Compatibility
        =============
        
        Tested under Python 2.6, 2.7 and 3.3
        
        
        Development
        ===========
        
        Use py.test to run unittests
        
        
        License
        =======
        
        Published under the original Yahoo License for YUI Compressor -- BSD.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Text Processing :: General
