2024-05-07 11:11:07 +09:00
|
|
|
#! format: off
|
2024-05-07 11:17:16 +09:00
|
|
|
using QuantumLegos
|
2024-05-07 11:11:07 +09:00
|
|
|
using Documenter
|
|
|
|
|
2024-05-07 11:17:16 +09:00
|
|
|
DocMeta.setdocmeta!(QuantumLegos, :DocTestSetup, :(using QuantumLegos); recursive=true)
|
2024-05-07 11:11:07 +09:00
|
|
|
|
|
|
|
makedocs(;
|
2024-05-07 11:17:16 +09:00
|
|
|
modules=[QuantumLegos],
|
2024-05-07 11:11:07 +09:00
|
|
|
authors="",
|
|
|
|
# repo="",
|
2024-05-07 11:17:16 +09:00
|
|
|
sitename="QuantumLegos.jl",
|
2024-05-07 11:11:07 +09:00
|
|
|
format=Documenter.HTML(;
|
|
|
|
prettyurls=get(ENV, "CI", "false") == "true",
|
|
|
|
edit_link="main",
|
|
|
|
assets=String[],
|
|
|
|
),
|
|
|
|
pages=[
|
|
|
|
"Home" => "index.md",
|
|
|
|
"PauliOps" => "pauliops.md",
|
|
|
|
"checkmatrix.md",
|
|
|
|
"distance.md",
|
|
|
|
],
|
|
|
|
)
|
2024-05-07 11:44:23 +09:00
|
|
|
|
|
|
|
deploydocs(;
|
|
|
|
repo="github.com/qwjyh/QuantumLegos.jl",
|
|
|
|
)
|