conf.py 545 B

12345678910111213141516171819
  1. # project information
  2. project = u'feedparser'
  3. copyright = u'2004-2008 Mark Pilgrim, 2010-2015 Kurt McKee'
  4. version = u'5.2.1'
  5. release = u'5.2.1'
  6. language = u'en'
  7. # documentation options
  8. master_doc = 'index'
  9. exclude_patterns = ['_build']
  10. # use a custom extension to make Sphinx add a <link> to feedparser.css
  11. import sys, os.path
  12. sys.path.append(os.path.dirname(os.path.abspath(__file__)))
  13. extensions = ['add_custom_css']
  14. # customize the html
  15. # files in html_static_path will be copied into _static/ when compiled
  16. html_static_path = ['_static']