Commit 190140ef authored by Jérome Perrin's avatar Jérome Perrin

fixup! convert documentation to rst

parent 46f2909f
......@@ -4,9 +4,9 @@ slapos.toolbox
SlapOS toolbox contains :
- `builder <slapos/README.builder.rst>`_
- `cloudmgr <slapos/README.cloudmgr.rst>`_
- `monitor <slapos/README.monitor.rst>`_
- `onetimeupload <slapos/README.onetimeupload.rst>`_
- `shacache <slapos/README.shacache.rst>`_
- `webrunner <slapos/README.webrunner.rst>`_
- `builder <./slapos/README.builder.rst>`_
- `cloudmgr <./slapos/README.cloudmgr.rst>`_
- `monitor <./slapos/README.monitor.rst>`_
- `onetimeupload <./slapos/README.onetimeupload.rst>`_
- `shacache <./slapos/README.shacache.rst>`_
- `webrunner <./slapos/README.webrunner.rst>`_
......@@ -4,12 +4,13 @@ import os
version = '0.50.dev0'
name = 'slapos.toolbox'
long_description = open("README.rst").read() + "\n" + \
open("CHANGES.txt").read() + "\n"
long_description = open("README.rst").read() + "\n"
for f in sorted(glob.glob(os.path.join('slapos', 'README.*.rst'))):
long_description += '\n' + open(f).read() + '\n'
long_description += open("CHANGES.txt").read() + "\n"
# Provide a way to install additional requirements
additional_install_requires = []
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment