Metadata-Version: 1.0
Name: titlecase
Version: 0.5.1
Summary: Python Port of John Gruber's titlecase.pl
Home-page: http://muffinresearch.co.uk/
Author: Stuart Colville
Author-email: pypi@muffinresearch.co.uk
License: MIT
Description: =========
        Titlecase
        =========
        
        Titlecase is a port of John Gruber's titlecase.pl
        http://daringfireball.net/2008/05/title_case
        
        This filter changes all words to Title Caps, and attempts to be clever
        about *un*\capitalizing SMALL words like a/an/the in the input.
        
        The list of "SMALL words" which are not capped comes from
        the New York Times Manual of Style, plus 'vs' and 'v'.
        
        Usage
        =====
        
        
        To use it is as simple as:
        
        >>> from titlecase import titlecase
        >>> titlecase('a thing')
        'A Thing'
        
        
        Bugs/Patches/Contributions
        ==========================
        
        See https://launchpad.net/titlecase.py
        
Keywords: string formatting
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Text Processing :: Filters
