-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
464 additions
and
22 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# -*- coding:utf-8 -*- | ||
############################################################## | ||
# Created Date: Friday, June 30th 2023 | ||
# Contact Info: [email protected] | ||
# Author/Copyright: Mr. Xiangyong Luo | ||
############################################################## | ||
|
||
|
||
import sys | ||
from pathlib import Path | ||
|
||
home_dir = Path(__file__).parent.parent.parent.absolute() | ||
sys.path.insert(0, str(home_dir)) | ||
# sys.path.insert(0, str(home_dir / 'my_readthedocs')) | ||
from multiproject.utils import get_project | ||
|
||
# -- Project information ----------------------------------------------------- | ||
project = 'pyufunc Guide' | ||
copyright = '2023-, Xiangyong Luo' | ||
author = 'Xiangyong Luo' | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = '0.1.3' | ||
|
||
|
||
# 'sphinx.ext.napoleon' | ||
extensions = [ | ||
'sphinx.ext.autodoc', | ||
'sphinx.ext.napoleon', | ||
"hoverxref.extension", | ||
"multiproject", | ||
"myst_parser", | ||
"notfound.extension", | ||
"sphinx_copybutton", | ||
"sphinx_design", | ||
"sphinx_search.extension", | ||
"sphinx_tabs.tabs", | ||
"sphinx-prompt", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosectionlabel", | ||
"sphinx.ext.extlinks", | ||
"sphinx.ext.intersphinx", | ||
"sphinxcontrib.httpdomain", | ||
"sphinxcontrib.video", | ||
"sphinxemoji.sphinxemoji", | ||
"sphinxext.opengraph"] | ||
|
||
|
||
multiproject_projects = { | ||
"user": { | ||
"use_config_file": False, | ||
"config": { | ||
"project": "Read the Docs user documentation", | ||
"html_title": "Read the Docs user documentation", | ||
}, | ||
}, | ||
"dev": { | ||
"use_config_file": False, | ||
"config": { | ||
"project": "Read the Docs developer documentation", | ||
"html_title": "Read the Docs developer documentation", | ||
}, | ||
}, | ||
} | ||
root_doc = 'index' | ||
language = 'en' | ||
source_suffix = {'.rst': 'restructuredtext'} | ||
|
||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = [] | ||
html_static_path = [] | ||
|
||
# html_theme = "sphinx_rtd_theme" | ||
|
||
# -- Options for EPUB output | ||
epub_show_urls = 'footnote' |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
|
||
# **** Package Info **** # | ||
pkg_version = "0.0.1" | ||
pkg_version = "0.1.3" | ||
pkg_name = "pyufunc" | ||
pkg_author = "Mr. Xiangyong Luo, Dr. Xuesong Simon Zhou" | ||
pkg_email = "[email protected], [email protected]" | ||
|
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
Oops, something went wrong.