1# -*- coding: utf-8 -*- 2# 3# English Language RTD & Sphinx config file 4# 5# Uses ../conf_common.py for most non-language-specific settings. 6 7# Importing conf_common adds all the non-language-specific 8# parts to this conf module 9try: 10 from conf_common import * # noqa: F403,F401 11except ImportError: 12 import os 13 import sys 14 sys.path.insert(0, os.path.abspath('../')) 15 from conf_common import * # noqa: F403,F401 16 17import datetime 18 19current_year = datetime.datetime.now().year 20 21# General information about the project. 22project = u'ESP-IDF Programming Guide' 23copyright = u'2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year) 24 25# The language for content autogenerated by Sphinx. Refer to documentation 26# for a list of supported languages. 27language = 'en' 28