Metadata-Version: 1.1
Name: quickrest
Version: 0.1.0
Summary: quickrest provides methods for easily generating restructured text in Python.
Home-page: https://github.com/mcmtroffaes/quickrest
Author: Matthias C. M. Troffaes
Author-email: matthias.troffaes@gmail.com
License: GPL
Download-URL: http://pypi.python.org/pypi/quickrest
Description: For instance::
        
            from quickrest.document import Document
            doc = Document()
            doc.add_chapter("Hello")
            doc.add_paragraph("Just to say hello.")
            doc.add_section("World")
            table = doc.add_table(["name", "age"])
            table.add_row(["Karl", 31])
            table.add_row(["Marcus", 2])
            print(doc)
        
        will print::
        
            Hello
            =====
        
            Just to say hello.
        
            World
            -----
        
            ====== ===
            name   age
            ====== ===
            Karl   31 
            Marcus 2  
            ====== ===
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Classifier: Topic :: Text Processing :: Markup
