DocumenteerConfig#

class documenteer.conf.DocumenteerConfig(conf)#

Bases: object

Configuration from a documenteer.toml file.

Parameters:

conf (ConfigRoot) –

Attributes Summary

base_url

Base root URL for the site.

copyright

The copyright statement.

github_url

The project's GitHub repository.

project

Project title.

version

The project's version.

Methods Summary

find_and_load()

rtype:

DocumenteerConfig

load(toml_content)

param toml_content:

Attributes Documentation

base_url#

Base root URL for the site.

The URL is obtained in this order:

  1. The base_url field of the [project] table in documenteer.toml.

  2. From importlib.metadata if [project.python] is set in documenteer.toml.

  3. Default is “”.

Return type:

str

copyright#

The copyright statement.

Default is "" if not set.

Return type:

str

github_url#

The project’s GitHub repository.

The GitHub URL is obtained in this order:

  1. The project.github_url field in documenteer.toml

  2. From importlib if the project.python table is set

  3. Default is None.

Return type:

Optional[str]

project#

Project title.

Return type:

str

version#

The project’s version.

The version is obtained in this order:

  1. project.version field in documenteer.toml

  2. From importlib if the project.python table is set

  3. Default is None.

Return type:

Optional[str]

Methods Documentation

classmethod find_and_load()#
Return type:

DocumenteerConfig

classmethod load(toml_content)#
Parameters:

toml_content (str) –

Return type:

DocumenteerConfig