kivy/doc
Zen-CODE 546e8857b4 doc: Add kivy.setupconfig to ignore list
This prevents the 'NO DOCUMENTATION' issue when building the docs and
API index
2016-02-21 16:33:35 +02:00
..
sources doc: fixed numbering in sources/installation/installation-windows.rst 2016-02-18 23:35:34 +02:00
Makefile pdf: call make pdf twice 2015-12-01 15:52:13 +05:30
README.md Update README.md 2015-10-05 19:54:29 +03:00
__init__.py tests/test_doc_gallery.py - Create test for gallery.py 2015-02-11 20:21:52 -08:00
autobuild.py doc: Add kivy.setupconfig to ignore list 2016-02-21 16:33:35 +02:00
doc-requirements.txt Update doc-requirements.txt 2016-01-09 01:34:53 +02:00
gallery.py remove python shebangs 2015-10-05 14:40:04 +03:00

README.md

Kivy - Documentation

You can access the latest documentation on the web:

How to build the documentation

You need to install:

  • Python Sphinx

    • Where apt-get is available:

      apt-get install python-sphinx
      
    • On Windows (or from inside your virtualenv):

      Get pip (https://pypi.python.org/pypi/pip). You'll use it to install the dependencies.
      
      To install pip, run python setup.py install in the pip directory. Now run:
      ```
      pip install sphinxcontrib-blockdiag sphinxcontrib-seqdiag
      pip install sphinxcontrib-actdiag sphinxcontrib-nwdiag
      ```
      Or just use the provided `doc-requirements.txt`:
      ```
      pip install -r doc-requirements.txt
      ```
      
  • Latest kivy

Generate documentation using make: make html.

Documentation will be accessible in build/html/.