Setup
In [1]:
Copied!
"""
This file is used to execute pre-build tasks for readthedocs compilation
"""
"""
This file is used to execute pre-build tasks for readthedocs compilation
"""
Out[1]:
'\nThis file is used to execute pre-build tasks for readthedocs compilation\n'
In [2]:
Copied!
import subprocess
import shlex
import subprocess
import shlex
In [3]:
Copied!
def shell(cmd):
subprocess.call(shlex.split(cmd))
def shell(cmd):
subprocess.call(shlex.split(cmd))
In [4]:
Copied!
if __name__ == "__main__":
shell("mkdir -p _build/html")
shell("cp ./LICENSE.txt _build/html/")
shell("cp -r ./docs _build/html/")
shell("python3 -m pip install ipykernel")
shell("python3 -m ipykernel install --user")
if __name__ == "__main__":
shell("mkdir -p _build/html")
shell("cp ./LICENSE.txt _build/html/")
shell("cp -r ./docs _build/html/")
shell("python3 -m pip install ipykernel")
shell("python3 -m ipykernel install --user")
Requirement already satisfied: ipykernel in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (6.15.3) Requirement already satisfied: debugpy>=1.0 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (1.6.3) Requirement already satisfied: packaging in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (21.3) Requirement already satisfied: matplotlib-inline>=0.1 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (0.1.6) Requirement already satisfied: ipython>=7.23.1 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (8.5.0) Requirement already satisfied: psutil in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (5.9.2) Requirement already satisfied: pyzmq>=17 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (24.0.0) Requirement already satisfied: traitlets>=5.1.0 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (5.4.0) Requirement already satisfied: tornado>=6.1 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (6.2) Requirement already satisfied: nest-asyncio in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (1.5.5) Requirement already satisfied: jupyter-client>=6.1.12 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipykernel) (7.3.5) Requirement already satisfied: stack-data in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (0.5.0) Requirement already satisfied: pickleshare in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (0.7.5) Requirement already satisfied: prompt-toolkit<3.1.0,>3.0.1 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (3.0.31) Requirement already satisfied: decorator in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (5.1.1) Requirement already satisfied: pexpect>4.3 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (4.8.0) Requirement already satisfied: jedi>=0.16 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (0.18.1) Requirement already satisfied: backcall in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (0.2.0) Requirement already satisfied: pygments>=2.4.0 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from ipython>=7.23.1->ipykernel) (2.10.0) Requirement already satisfied: jupyter-core>=4.9.2 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from jupyter-client>=6.1.12->ipykernel) (4.11.1) Requirement already satisfied: entrypoints in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from jupyter-client>=6.1.12->ipykernel) (0.4) Requirement already satisfied: python-dateutil>=2.8.2 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from jupyter-client>=6.1.12->ipykernel) (2.8.2) Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from packaging->ipykernel) (3.0.9) Requirement already satisfied: parso<0.9.0,>=0.8.0 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from jedi>=0.16->ipython>=7.23.1->ipykernel) (0.8.3) Requirement already satisfied: ptyprocess>=0.5 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from pexpect>4.3->ipython>=7.23.1->ipykernel) (0.7.0) Requirement already satisfied: wcwidth in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from prompt-toolkit<3.1.0,>3.0.1->ipython>=7.23.1->ipykernel) (0.2.5) Requirement already satisfied: six>=1.5 in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from python-dateutil>=2.8.2->jupyter-client>=6.1.12->ipykernel) (1.16.0) Requirement already satisfied: pure-eval in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from stack-data->ipython>=7.23.1->ipykernel) (0.2.2) Requirement already satisfied: executing in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from stack-data->ipython>=7.23.1->ipykernel) (1.0.0) Requirement already satisfied: asttokens in /home/docs/checkouts/readthedocs.org/user_builds/qsparse/envs/latest/lib/python3.8/site-packages (from stack-data->ipython>=7.23.1->ipykernel) (2.0.8) Installed kernelspec python3 in /home/docs/.local/share/jupyter/kernels/python3