Metadata-Version: 1.1
Name: tomsbestfriend
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/Julian/TomsBestFriend
Author: Julian Berman
Author-email: Julian@GrayVines.com
License: MIT
Description: =================
        Tom's Best Friend
        =================
        
        Tom's Best Friend is a `TOML <https://github.com/mojombo/toml>`_ parser for
        people with deadlines. No, sorry. For humans. No, dammit, all the good taglines
        are taken.
        
        .. code-block:: python
        
            >>> from pprint import pprint
            >>> from tomsbestfriend import loads
        
            >>> pprint(
            ...     loads(
            ...     """
            ...     [cartoons]
            ...     characters = ["filbert", "heffer"]
            ...     hilarious = true
            ...
            ...     [cartoons.info]
            ...     episodes = 52
            ...     """
            ...     )
            ... )
            {'cartoons': {'characters': [u'filbert', u'heffer'],
                          'hilarious': True,
                          'info': {'episodes': 52}}}
        
        
        Contributing
        ------------
        
        I'm Julian Berman.
        
        ``TomsBestFriend`` is on `GitHub <http://github.com/Julian/TomsBestFriend>`_.
        
        Get in touch, via GitHub or otherwise, if you've got something to contribute,
        it'd be most welcome!
        
        You can also generally find me on Freenode (nick: ``tos9``) in various
        channels, including ``#python``.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
