37 lines
		
	
	
		
			No EOL
		
	
	
		
			728 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			728 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
 | |
| # project name
 | |
| project = u'Project Name'
 | |
| 
 | |
| #github repository URL
 | |
| github_repo = ''
 | |
| 
 | |
| # Tex info conf
 | |
| texinfo_documents = [
 | |
|   ('index', 'Project name', u'Project Documentation',
 | |
|    u'Copyright holder', 'Project name', 'One line description of project.',
 | |
|    'Miscellaneous'),
 | |
| ]
 | |
| 
 | |
| # Man page conf
 | |
| man_pages = [
 | |
|     ('index', 'projectname', u'PProject name Documentation',
 | |
|      [u'Copyright holder'], 1)
 | |
| ]
 | |
| 
 | |
| # Latex doc conf
 | |
| latex_documents = [
 | |
|   ('index', 'ProjectName.tex', u'Project Name Documentation',
 | |
|    u'Copyright holder', 'manual'),
 | |
| ]
 | |
| 
 | |
| # html help basename
 | |
| htmlhelp_basename = 'PROJECTdoc'
 | |
| 
 | |
| # version
 | |
| version = '0.1'
 | |
| 
 | |
| # release
 | |
| release = '0.1'
 | |
| 
 | |
| # Copyright Value  ex : copyright = u'2012, Alchemy'
 | |
| copyright = u'2012, Alchemy' |