You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sphinx-autoapi/docs/index.rst

58 lines
844 B
ReStructuredText

10 years ago
Sphinx AutoAPI
==============
10 years ago
A tool that generates a full API ref (Javadoc style) for your project.
It requires no RST and is fully automated,
while being integrated into Sphinx.
Contents
--------
.. toctree::
:glob:
config
templates
10 years ago
design
Install
-------
First you need to install autoapi.
.. code:: bash
pip install sphinx-autoapi
Then add it to your Sphinx project's ``conf.py``:
.. code:: python
extensions = ['autoapi.extension']
autoapi_type = 'python'
autoapi_dir = 'path/to/my/project/files'
autoapi_output = 'path/to/output'
See all available configuration options in :doc:`config`.
Design
------
Read more about the deisgn in our :doc:`design`.
Currently Implemented
---------------------
* Python
* .Net
Future
------
Our goal is to support the following soon:
* Javascript
* PHP
* Python
* Go