File: conf.py

package info (click to toggle)
feedparser 5.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 10,980 kB
  • sloc: xml: 11,438; python: 4,238; makefile: 19
file content (19 lines) | stat: -rwxr-xr-x 545 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# project information
project = u'feedparser'
copyright = u'2004-2008 Mark Pilgrim, 2010-2015 Kurt McKee'
version = u'5.2.1'
release = u'5.2.1'
language = u'en'

# documentation options
master_doc = 'index'
exclude_patterns = ['_build']

# use a custom extension to make Sphinx add a <link> to feedparser.css
import sys, os.path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
extensions = ['add_custom_css']

# customize the html
# files in html_static_path will be copied into _static/ when compiled
html_static_path = ['_static']