/usr/share/python-ase/doc/conf.py is in python-ase-doc 3.9.1.4567-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import sys
sys.path.append('.')
assert sys.version >= '2.7'
extensions = ['ext',
'images',
'sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.intersphinx']
source_suffix = '.rst'
master_doc = 'contents'
project = 'ASE'
copyright = '2015, CAMd'
templates_path = ['templates']
exclude_patterns = ['build']
default_role = 'math'
pygments_style = 'sphinx'
autoclass_content = 'both'
html_style = 'ase.css'
html_logo = 'static/ase.ico'
html_favicon = 'static/ase.ico'
html_static_path = ['static']
html_last_updated_fmt = '%a, %d %b %Y %H:%M:%S'
intersphinx_mapping = {'gpaw': ('http://wiki.fysik.dtu.dk/gpaw', None),
'python': ('http://docs.python.org/2.7', None)}
|