/usr/share/python-ase/doc/conf.py is in python-ase-doc 3.15.0-1.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | import sys
import sphinx_rtd_theme
from ase import __version__
sys.path.append('.')
assert sys.version_info >= (2, 7)
extensions = ['ext',
'images',
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.intersphinx']
source_suffix = '.rst'
master_doc = 'index'
project = 'ASE'
copyright = '2017, ASE-developers'
templates_path = ['templates']
exclude_patterns = ['build']
default_role = 'math'
pygments_style = 'sphinx'
autoclass_content = 'both'
modindex_common_prefix = ['ase.']
nitpick_ignore = [('envvar', 'VASP_PP_PATH'),
('envvar', 'ASE_ABC_COMMAND'),
('envvar', 'FLEUR_INPGEN'),
('envvar', 'FLEUR'),
('envvar', 'LAMMPS_COMMAND'),
('envvar', 'ASE_NWCHEM_COMMAND'),
('envvar', 'SIESTA_COMMAND'),
('envvar', 'SIESTA_PP_PATH'),
('envvar', 'VASP_SCRIPT')]
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_style = 'ase.css'
html_favicon = 'static/ase.ico'
html_static_path = ['static']
html_last_updated_fmt = '%a, %d %b %Y %H:%M:%S'
ase_dev_version = '3.15.1b1' # This line auto-edited by newrelease script
ase_stable_version = '3.15.0' # This line auto-edited by newrelease script
html_context = {
'current_version': __version__,
'versions':
[('{} (development)'.format(ase_dev_version),
'https://wiki.fysik.dtu.dk/ase/dev'),
('{} (latest stable)'.format(ase_stable_version),
'https://wiki.fysik.dtu.dk/ase')]}
latex_elements = {
'papersize': 'a4paper',
'preample': r'\setcounter{tocdepth}{4}'}
latex_show_urls = 'inline'
latex_show_pagerefs = True
latex_documents = [
('index', 'ASE.tex', 'ASE', 'ASE-developers', 'howto', not True)]
intersphinx_mapping = {'gpaw': ('https://wiki.fysik.dtu.dk/gpaw', None),
'python': ('https://docs.python.org/2.7', None)}
# Avoid GUI windows during doctest:
doctest_global_setup = """
import ase.visualize as visualize
from ase import Atoms
visualize.view = lambda atoms: None
Atoms.edit = lambda self: None
"""
|