LSSTApplications  11.0-24-g0a022a1,14.0+77,15.0,15.0+1
LSSTDataManagementBasePackage
conf.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """Sphinx configurations to build package documentation."""
3 
4 from documenteer.sphinxconfig.stackconf import build_package_configs
5 
7 
8 
9 _g = globals()
10 _g.update(build_package_configs(
11  project_name='display_firefly',
12  copyright='2016-2017 Association of Universities for '
13  'Research in Astronomy, Inc.',
14  version=lsst.display.firefly.version.__version__,
15  doxygen_xml_dirname=None))
16 
17 intersphinx_mapping['astropy'] = ('http://docs.astropy.org/en/stable', None)
18 
19 # DEBUG only
20 automodsumm_writereprocessed = False
21 
22 extensions = [
23  'astropy_helpers.extern.automodapi.automodapi',
24  'astropy_helpers.extern.numpydoc']