Commit 10395122 authored by Łukasz Nowak's avatar Łukasz Nowak

Include docstring tests as part of documentation.

parent 7c39e476
......@@ -4,6 +4,14 @@ name = "slapos.rebootstrap"
long_description = open("README.txt").read() + '\n\n'
long_description += open("CHANGES.txt").read()
long_description += """
Technical documentation
=======================
"""
import glob
import os
for f in glob.glob(os.path.join('slapos', 'rebootstrap', '*.txt')):
long_description += '\n' + open(f).read() + '\n'
setup(
name=name,
......
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