kivy/doc/README.md

39 lines
973 B
Markdown
Raw Normal View History

2010-11-03 21:05:03 +00:00
Kivy - Documentation
====================
2015-10-05 16:54:29 +00:00
You can access the latest documentation on the web:
* http://kivy.org/docs
2010-11-03 21:05:03 +00:00
How to build the documentation
------------------------------
2015-10-05 16:54:29 +00:00
You need to install:
2013-04-12 06:43:09 +00:00
* Python Sphinx
2015-10-05 16:54:29 +00:00
- Where apt-get is available:
```
apt-get install python-sphinx
```
- On Windows (or from inside your virtualenv):
2013-04-12 06:43:09 +00:00
Get pip (https://pypi.python.org/pypi/pip). You'll use it to install the dependencies.
2015-10-05 16:54:29 +00:00
To install pip, run python setup.py install in the pip directory. Now run:
```
2015-01-31 01:29:31 +00:00
pip install sphinxcontrib-blockdiag sphinxcontrib-seqdiag
pip install sphinxcontrib-actdiag sphinxcontrib-nwdiag
2015-10-05 16:54:29 +00:00
```
Or just use the provided `doc-requirements.txt`:
```
2015-01-31 01:29:31 +00:00
pip install -r doc-requirements.txt
2015-10-05 16:54:29 +00:00
```
2013-04-12 06:43:09 +00:00
2010-11-03 21:05:03 +00:00
* Latest kivy
2015-10-05 16:54:29 +00:00
Generate documentation using make: `make html`.
2010-11-03 21:05:03 +00:00
2015-10-05 16:54:29 +00:00
Documentation will be accessible in `build/html/`.
2010-11-03 21:05:03 +00:00