pax_global_header00006660000000000000000000000064125622734250014522gustar00rootroot0000000000000052 comment=7b4f697f6d813ea019ea5715216becf79183b35d pydoctor-0.5+git20151204/000077500000000000000000000000001256227342500146275ustar00rootroot00000000000000pydoctor-0.5+git20151204/.gitignore000066400000000000000000000000671256227342500166220ustar00rootroot00000000000000build MANIFEST dist *.pyc .tox/ .coverage .DS_Store *~ pydoctor-0.5+git20151204/.travis.yml000066400000000000000000000002721256227342500167410ustar00rootroot00000000000000language: python python: 2.7 env: - TOX_ENV=pyflakes - TOX_ENV=pypy - TOX_ENV=py27 install: - pip install tox script: tox -e $TOX_ENV notifications: email: false pydoctor-0.5+git20151204/LICENSE.txt000066400000000000000000000015171256227342500164560ustar00rootroot00000000000000 Copyright 2006-2008 Michael Hudson mwh@python.net All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. THE AUTHOR MICHAEL HUDSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. pydoctor-0.5+git20151204/MANIFEST.in000066400000000000000000000001771256227342500163720ustar00rootroot00000000000000include setup.cfg graft pydoctor/templates graft doc include *.txt *.tac include MANIFEST.in include *.cfg graft pydoctor/test pydoctor-0.5+git20151204/README.rst000066400000000000000000000033401256227342500163160ustar00rootroot00000000000000pydoctor ======== .. image:: https://travis-ci.org/twisted/pydoctor.svg?branch=tox-travis-2 :target: https://travis-ci.org/twisted/pydoctor This is 'pydoctor', an API documentation generator that works by static analysis. It was written primarily to replace epydoc for the purposes of the Twisted project as epydoc has difficulties with zope.interface. If it happens to work for your code too, that's a nice bonus :) pydoctor puts a fair bit of effort into resolving imports and computing inheritance hierarchies and, as it aims at documenting Twisted, knows about zope.interface's declaration API and can present information about which classes implement which interface, and vice versa. The default HTML generator requires Twisted. There are some more notes in the doc/ subdirectory. Sphinx Integration ------------------ HTML generator will also generate a Sphinx objects inventory using the following mapping: * packages, modules -> py:mod: * classes -> py:class: * functions -> py:func: * methods -> py:meth: * attributes -> py:attr: Configure Sphinx intersphinx extension: intersphinx_mapping = { 'pydoctor': ('http://domain.tld/api', None), } Use external references:: :py:func:`External API ` :py:mod:`pydoctor:pydoctor` :py:mod:`pydoctor:pydoctor.model` :py:func:`pydoctor:pydoctor.driver.getparser` :py:class:`pydoctor:pydoctor.model.Documentable` :py:meth:`pydoctor:pydoctor.model.Documentable.reparent` :py:attr:`pydoctor:pydoctor.model.Documentable.kind` It can link to external API documentation using Sphinx objects inventory using the following cumulative configuration option:: --intersphinx=http://sphinx-doc.org/objects.inv pydoctor-0.5+git20151204/apilinks_sphinxext.py000066400000000000000000000025211256227342500211250ustar00rootroot00000000000000""" Sphinx/docutils extension to create links to pyDoctor documentation using a RestructuredText interpreted text role that looks like this:: :api:`python_object_to_link_to