conf.py 782 B

123456789101112131415161718192021222324252627
  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. try:
  9. from conf_common import * # noqa: F403,F401
  10. except ImportError:
  11. import os
  12. import sys
  13. sys.path.insert(0, os.path.abspath('../'))
  14. from conf_common import * # noqa: F403,F401
  15. import datetime
  16. current_year = datetime.datetime.now().year
  17. # General information about the project.
  18. project = u'ESP-IDF Programming Guide'
  19. copyright = u'2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year)
  20. # The language for content autogenerated by Sphinx. Refer to documentation
  21. # for a list of supported languages.
  22. language = 'en'