-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from codePerfectPlus/patch-1
fixing miner bugs
- Loading branch information
Showing
3 changed files
with
37 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,43 @@ | ||
from datetime import datetime | ||
|
||
project = 'audiobook' | ||
copyright = '2022, Deeapk Raj' | ||
|
||
project = 'Random Profile Generator' | ||
description = 'A random profile generator for testing purposes.' | ||
author = 'Deeapk Raj' | ||
release = '2.0.4' | ||
release = '0.2.3' | ||
year = datetime.now().year | ||
copyright = "{} Deepak Raj".format(year) | ||
source_suffix = ".rst" | ||
source_encoding = "utf-8-sig" | ||
|
||
master_doc = "index" | ||
templates_path = ['_templates'] | ||
html_static_path = ['_static'] | ||
releases_github_path = "Py-Contributors/RandomProfileGenerator" | ||
|
||
extensions = [ | ||
'sphinx.ext.autosectionlabel' | ||
] | ||
|
||
releases_github_path = "Py-Contributors/RandomProfileGenerator" | ||
|
||
autosectionlabel_prefix_document = True | ||
|
||
templates_path = ['_templates'] | ||
source_suffix = ".rst" | ||
master_doc = "index" | ||
year = datetime.now().year | ||
copyright = "{} Deepak Raj".format(year) | ||
|
||
html_theme = 'sphinx_rtd_theme' # 'pydata_sphinx_theme' 'alabaster' | ||
|
||
html_static_path = ['_static'] | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv'] | ||
html_sidebars = { '**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html'] } | ||
html_sidebars = {'**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html']} | ||
|
||
rst_epilog = """ | ||
.. |project| replace:: Random Profile Generator | ||
.. |copyright| replace:: Copyright © {} Deepak Raj | ||
.. | community | replace:: `Py-Contributors <https://github.com/py-contributors/>`_ | ||
""".format(year) | ||
|
||
# epub settings | ||
epub_basename = project | ||
epub_theme = 'epub' | ||
epub_description = description | ||
epub_author = author | ||
epub_contributor = 'Py-Contributors' | ||
epub_language = 'en' | ||
epub_publisher = 'Py-Contributors' | ||
epub_copyright = copyright |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
sphinx | ||
livereload | ||
sphinx-rtd-theme | ||
pydata_sphinx_theme | ||
|
||
#livereload | ||
#pydata_sphinx_theme |