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 ...@@ -4,9 +4,9 @@ slapos.toolbox
SlapOS toolbox contains : SlapOS toolbox contains :
- `builder <slapos/README.builder.rst>`_ - `builder <./slapos/README.builder.rst>`_
- `cloudmgr <slapos/README.cloudmgr.rst>`_ - `cloudmgr <./slapos/README.cloudmgr.rst>`_
- `monitor <slapos/README.monitor.rst>`_ - `monitor <./slapos/README.monitor.rst>`_
- `onetimeupload <slapos/README.onetimeupload.rst>`_ - `onetimeupload <./slapos/README.onetimeupload.rst>`_
- `shacache <slapos/README.shacache.rst>`_ - `shacache <./slapos/README.shacache.rst>`_
- `webrunner <slapos/README.webrunner.rst>`_ - `webrunner <./slapos/README.webrunner.rst>`_
...@@ -4,12 +4,13 @@ import os ...@@ -4,12 +4,13 @@ import os
version = '0.50.dev0' version = '0.50.dev0'
name = 'slapos.toolbox' name = 'slapos.toolbox'
long_description = open("README.rst").read() + "\n" + \ long_description = open("README.rst").read() + "\n"
open("CHANGES.txt").read() + "\n"
for f in sorted(glob.glob(os.path.join('slapos', 'README.*.rst'))): for f in sorted(glob.glob(os.path.join('slapos', 'README.*.rst'))):
long_description += '\n' + open(f).read() + '\n' long_description += '\n' + open(f).read() + '\n'
long_description += open("CHANGES.txt").read() + "\n"
# Provide a way to install additional requirements # Provide a way to install additional requirements
additional_install_requires = [] additional_install_requires = []
try: 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