File: conf.py

package info (click to toggle)
python-peachpy 0.0~git20211013.257881e-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,452 kB
  • sloc: python: 29,286; ansic: 54; makefile: 44; cpp: 31
file content (22 lines) | stat: -rw-r--r-- 419 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import sphinx_bootstrap_theme
from peachpy import __version__

extensions = [
    'sphinx.ext.autodoc'
]

source_suffix = '.rst'
master_doc = 'index'

autoclass_content = "both"

project = u'PeachPy'
copyright = u'2013-2015, Georgia Institute of Technology'

version = __version__
release = __version__

pygments_style = 'sphinx'

html_theme = 'bootstrap'
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()