conf.py 659 B

1234567891011121314151617181920
  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. # Importing conf_common adds all the non-language-specific
  7. # parts to this conf module
  8. import sys
  9. import os
  10. sys.path.insert(0, os.path.abspath('..'))
  11. from conf_common import * # noqa: F401, F403 - need to make available everything from common
  12. # General information about the project.
  13. project = u'ESP-IDF Programming Guide'
  14. copyright = u'2016 - 2019, Espressif Systems (Shanghai) CO., LTD'
  15. # The language for content autogenerated by Sphinx. Refer to documentation
  16. # for a list of supported languages.
  17. language = 'en'