Metadata-Version: 1.1
Name: pdoc
Version: 0.0.6
Summary: A simple program to auto generate API documentation for Python libraries.
Home-page: https://github.com/BurntSushi/pdoc
Author: Andrew Gallant
Author-email: pdoc@burntsushi.net
License: UNLICENSE
Description: A simple program (and library) to auto generate API documentation for Python 
        libraries. All documentation text is parsed as Markdown and can be outputted as 
        HTML or as plain text for console use. There are no special syntax rules, just 
        pure Markdown.
        
        While pdoc tries to stay consistent with documentation practices recommend by 
        PEP 8 and PEP 257, pdoc also looks for documentation of representation in some 
        places just as epydoc does. Namely, docstrings proceeding module level 
        variables, class variables and instance variables in __init__ methods. This is 
        done by traversing the ast of the source text.
Platform: ANY
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Utilities
Classifier: License :: Public Domain
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires: argparse
Requires: mako
Requires: markdown
Provides: pdoc
