diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index 8b38aced6bbf926347a5e323307087e405f86476..5ea04ae97cd686f3034421d670f031b5ab8e97da 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # vim: set fileencoding=utf-8 : +'''Methods to bootstrap working environments based on conda-packages''' + import os import json import shutil diff --git a/bob/devtools/changelog.py b/bob/devtools/changelog.py index 3657ab5d926f25696516a227154822b754e31590..73aacbed05d39e196b781b023c87e452fc2940df 100644 --- a/bob/devtools/changelog.py +++ b/bob/devtools/changelog.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +'''Utilities for retrieving, parsing and auto-generating changelogs''' import io import datetime diff --git a/bob/devtools/log.py b/bob/devtools/log.py index 7b26d1788f15f6cfb4f673d3ff89002255ef16b3..3cc7c7838299e2c4b9d8ecdde85cb2888ca73aed 100644 --- a/bob/devtools/log.py +++ b/bob/devtools/log.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -"""Sets-up logging, centrally for Bob. +"""Logging utilities """ import sys diff --git a/bob/devtools/release.py b/bob/devtools/release.py index 8e0bbc793fb3a491b3700473dd029b0ae1c339e5..5858bf55f3239c6e2e3063a4e2facd441fba317d 100644 --- a/bob/devtools/release.py +++ b/bob/devtools/release.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +'''Utilities to needed to release packages''' + import os import re import time diff --git a/doc/api.rst b/doc/api.rst index 8caad497b1008bdeacfc3506b0983bc5e5052847..b3762d86a4338517137e4b419fc0b330911a850e 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -7,10 +7,13 @@ .. autosummary:: bob.devtools.log + bob.devtools.ci bob.devtools.conda + bob.devtools.constants bob.devtools.release bob.devtools.changelog bob.devtools.bootstrap + bob.devtools.webdav3.client Detailed Information @@ -18,10 +21,20 @@ Detailed Information .. automodule:: bob.devtools.log +.. automodule:: bob.devtools.ci + .. automodule:: bob.devtools.conda +.. automodule:: bob.devtools.constants + .. automodule:: bob.devtools.release .. automodule:: bob.devtools.changelog .. automodule:: bob.devtools.bootstrap + + +WebDAV Python Client +-------------------- + +.. automodule:: bob.devtools.webdav3.client