mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +03:00 
			
		
		
		
	Add alabaster theme config
This commit is contained in:
		
							parent
							
								
									7bf6ca3eb0
								
							
						
					
					
						commit
						8c4be9fab7
					
				
							
								
								
									
										26
									
								
								docs/conf.py
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								docs/conf.py
									
									
									
									
									
								
							| 
						 | 
					@ -15,6 +15,7 @@
 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
import sys
 | 
					import sys
 | 
				
			||||||
 | 
					import alabaster
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# If extensions (or modules to document with autodoc) are in another directory,
 | 
					# If extensions (or modules to document with autodoc) are in another directory,
 | 
				
			||||||
# add these directories to sys.path here. If the directory is relative to the
 | 
					# add these directories to sys.path here. If the directory is relative to the
 | 
				
			||||||
| 
						 | 
					@ -29,8 +30,11 @@ sys.path.insert(0, os.path.abspath('..'))
 | 
				
			||||||
# Add any Sphinx extension module names here, as strings. They can be
 | 
					# Add any Sphinx extension module names here, as strings. They can be
 | 
				
			||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 | 
					# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 | 
				
			||||||
# ones.
 | 
					# ones.
 | 
				
			||||||
extensions = ['sphinx.ext.autodoc',
 | 
					extensions = [
 | 
				
			||||||
              'sphinxcontrib.disqus']
 | 
					    'alabaster',
 | 
				
			||||||
 | 
					    'sphinx.ext.autodoc',
 | 
				
			||||||
 | 
					    'sphinxcontrib.disqus',
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Add any paths that contain templates here, relative to this directory.
 | 
					# Add any paths that contain templates here, relative to this directory.
 | 
				
			||||||
templates_path = ['_templates']
 | 
					templates_path = ['_templates']
 | 
				
			||||||
| 
						 | 
					@ -112,7 +116,8 @@ todo_include_todos = False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# The theme to use for HTML and HTML Help pages.  See the documentation for
 | 
					# The theme to use for HTML and HTML Help pages.  See the documentation for
 | 
				
			||||||
# a list of builtin themes.
 | 
					# a list of builtin themes.
 | 
				
			||||||
html_theme = 'sphinx_rtd_theme'
 | 
					# html_theme = 'sphinx_rtd_theme'
 | 
				
			||||||
 | 
					html_theme = 'alabaster'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Theme options are theme-specific and customize the look and feel of a theme
 | 
					# Theme options are theme-specific and customize the look and feel of a theme
 | 
				
			||||||
# further.  For a list of options available for each theme, see the
 | 
					# further.  For a list of options available for each theme, see the
 | 
				
			||||||
| 
						 | 
					@ -120,7 +125,7 @@ html_theme = 'sphinx_rtd_theme'
 | 
				
			||||||
# html_context = {}
 | 
					# html_context = {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Add any paths that contain custom themes here, relative to this directory.
 | 
					# Add any paths that contain custom themes here, relative to this directory.
 | 
				
			||||||
#html_theme_path = ['_themes']
 | 
					html_theme_path = [alabaster.get_path()]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# The name for this set of Sphinx documents.  If None, it defaults to
 | 
					# The name for this set of Sphinx documents.  If None, it defaults to
 | 
				
			||||||
# "<project> v<release> documentation".
 | 
					# "<project> v<release> documentation".
 | 
				
			||||||
| 
						 | 
					@ -291,6 +296,13 @@ autodoc_member_order = 'bysource'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
disqus_shortname = 'python-dependency-injector'
 | 
					disqus_shortname = 'python-dependency-injector'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					html_theme_options = {
 | 
				
			||||||
def setup(app):
 | 
					    'github_user': 'ets-labs',
 | 
				
			||||||
    app.add_css_file('sphinx_rtd_theme-hotfix.css')
 | 
					    'github_repo': 'python-dependency-injector',
 | 
				
			||||||
 | 
					    'github_type': 'star',
 | 
				
			||||||
 | 
					    'github_button': True,
 | 
				
			||||||
 | 
					    'github_banner': True,
 | 
				
			||||||
 | 
					    'logo': 'logo.svg',
 | 
				
			||||||
 | 
					    'description': 'Dependency injection framework for Python',
 | 
				
			||||||
 | 
					    'code_font_size': '10pt',
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
sphinx
 | 
					sphinx
 | 
				
			||||||
sphinx_rtd_theme>=0.2.5b2
 | 
					alabaster>=0.7.12
 | 
				
			||||||
-e git://github.com/rmk135/sphinxcontrib-disqus.git#egg=sphinxcontrib-disqus
 | 
					-e git://github.com/rmk135/sphinxcontrib-disqus.git#egg=sphinxcontrib-disqus
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-r requirements-ext.txt
 | 
					-r requirements-ext.txt
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user