11from datetime import datetime
22
3- project = 'audiobook'
4- copyright = '2022, Deeapk Raj'
3+
4+ project = 'Random Profile Generator'
5+ description = 'A random profile generator for testing purposes.'
56author = 'Deeapk Raj'
6- release = '2.0.4'
7+ release = '0.2.3'
8+ year = datetime .now ().year
9+ copyright = "{} Deepak Raj" .format (year )
10+ source_suffix = ".rst"
11+ source_encoding = "utf-8-sig"
12+
13+ master_doc = "index"
14+ templates_path = ['_templates' ]
15+ html_static_path = ['_static' ]
16+ releases_github_path = "Py-Contributors/RandomProfileGenerator"
717
818extensions = [
919 'sphinx.ext.autosectionlabel'
1020]
1121
12- releases_github_path = "Py-Contributors/RandomProfileGenerator"
13-
1422autosectionlabel_prefix_document = True
1523
16- templates_path = ['_templates' ]
17- source_suffix = ".rst"
18- master_doc = "index"
19- year = datetime .now ().year
20- copyright = "{} Deepak Raj" .format (year )
21-
2224html_theme = 'sphinx_rtd_theme' # 'pydata_sphinx_theme' 'alabaster'
2325
24- html_static_path = ['_static' ]
2526exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' , '.venv' ]
26- html_sidebars = { '**' : ['globaltoc.html' , 'relations.html' , 'sourcelink.html' , 'searchbox.html' ] }
27+ html_sidebars = {'**' : ['globaltoc.html' , 'relations.html' , 'sourcelink.html' , 'searchbox.html' ]}
28+
29+ rst_epilog = """
30+ .. |project| replace:: Random Profile Generator
31+ .. |copyright| replace:: Copyright © {} Deepak Raj
32+ .. | community | replace:: `Py-Contributors <https://github.com/py-contributors/>`_
33+ """ .format (year )
34+
35+ # epub settings
36+ epub_basename = project
37+ epub_theme = 'epub'
38+ epub_description = description
39+ epub_author = author
40+ epub_contributor = 'Py-Contributors'
41+ epub_language = 'en'
42+ epub_publisher = 'Py-Contributors'
43+ epub_copyright = copyright
0 commit comments