forked from flyteorg/flyte
-
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.
Enabling RTD supported format for docs (flyteorg#680)
- Loading branch information
Showing
9 changed files
with
196 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
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,16 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: rsts/conf.py | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: doc-requirements.txt |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
sphinx | ||
sphinx-prompt | ||
sphinx-material | ||
sphinx-code-include | ||
sphinx-autoapi | ||
sphinx-copybutton |
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,105 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile doc-requirements.in | ||
# | ||
alabaster==0.7.12 | ||
# via sphinx | ||
astroid==2.4.2 | ||
# via sphinx-autoapi | ||
babel==2.9.0 | ||
# via sphinx | ||
beautifulsoup4==4.9.3 | ||
# via | ||
# sphinx-code-include | ||
# sphinx-material | ||
certifi==2020.12.5 | ||
# via requests | ||
chardet==4.0.0 | ||
# via requests | ||
css-html-js-minify==2.5.5 | ||
# via sphinx-material | ||
docutils==0.16 | ||
# via sphinx | ||
idna==2.10 | ||
# via requests | ||
imagesize==1.2.0 | ||
# via sphinx | ||
jinja2==2.11.2 | ||
# via | ||
# sphinx | ||
# sphinx-autoapi | ||
lazy-object-proxy==1.4.3 | ||
# via astroid | ||
lxml==4.6.2 | ||
# via sphinx-material | ||
markupsafe==1.1.1 | ||
# via jinja2 | ||
packaging==20.8 | ||
# via sphinx | ||
pygments==2.7.4 | ||
# via | ||
# sphinx | ||
# sphinx-prompt | ||
pyparsing==2.4.7 | ||
# via packaging | ||
python-slugify[unidecode]==4.0.1 | ||
# via sphinx-material | ||
pytz==2020.5 | ||
# via babel | ||
pyyaml==5.4.1 | ||
# via sphinx-autoapi | ||
requests==2.25.1 | ||
# via sphinx | ||
six==1.15.0 | ||
# via | ||
# astroid | ||
# sphinx-code-include | ||
snowballstemmer==2.1.0 | ||
# via sphinx | ||
soupsieve==2.1 | ||
# via beautifulsoup4 | ||
sphinx-autoapi==1.6.0 | ||
# via -r doc-requirements.in | ||
sphinx-code-include==1.1.1 | ||
# via -r doc-requirements.in | ||
sphinx-copybutton==0.3.1 | ||
# via -r doc-requirements.in | ||
sphinx-material==0.0.32 | ||
# via -r doc-requirements.in | ||
sphinx-prompt==1.3.0 | ||
# via -r doc-requirements.in | ||
sphinx==3.4.3 | ||
# via | ||
# -r doc-requirements.in | ||
# sphinx-autoapi | ||
# sphinx-code-include | ||
# sphinx-copybutton | ||
# sphinx-material | ||
# sphinx-prompt | ||
sphinxcontrib-applehelp==1.0.2 | ||
# via sphinx | ||
sphinxcontrib-devhelp==1.0.2 | ||
# via sphinx | ||
sphinxcontrib-htmlhelp==1.0.3 | ||
# via sphinx | ||
sphinxcontrib-jsmath==1.0.1 | ||
# via sphinx | ||
sphinxcontrib-qthelp==1.0.3 | ||
# via sphinx | ||
sphinxcontrib-serializinghtml==1.1.4 | ||
# via sphinx | ||
text-unidecode==1.3 | ||
# via python-slugify | ||
unidecode==1.1.2 | ||
# via | ||
# python-slugify | ||
# sphinx-autoapi | ||
urllib3==1.26.3 | ||
# via requests | ||
wrapt==1.12.1 | ||
# via astroid | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools |
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,23 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SPHINXPROJ = flyte | ||
SOURCEDIR = . | ||
BUILDDIR = _build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
|
||
|
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
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