mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-14 09:18:56 +00:00
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# English Language RTD & Sphinx config file
|
|
#
|
|
# Uses ../conf_common.py for most non-language-specific settings.
|
|
|
|
# Importing conf_common adds all the non-language-specific
|
|
# parts to this conf module
|
|
try:
|
|
from conf_common import * # noqa: F403,F401
|
|
except ImportError:
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.abspath('../'))
|
|
from conf_common import * # noqa: F403,F401
|
|
|
|
import datetime
|
|
|
|
sys.path.append(os.path.abspath('../../cli/'))
|
|
autodoc_mock_imports = ["pathlib", "cryptography", "nvs_partition_gen", "oauth2client", "serial", "user_mapping", "rmaker_tools.rmaker_prov.esp_rainmaker_prov", "rmaker_tools.rmaker_prov.security", "rmaker_tools.rmaker_prov.prov", "rmaker_tools.rmaker_prov.prov_util", "rmaker_tools.rmaker_claim.claim"]
|
|
|
|
current_year = datetime.datetime.now().year
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
project = u'ESP RainMaker Programming Guide'
|
|
copyright = u'2020, Espressif Systems (Shanghai) CO., LTD'
|
|
author = 'Espressif'
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
# for a list of supported languages.
|
|
language = 'en'
|