-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.jl
More file actions
25 lines (21 loc) · 835 Bytes
/
make.jl
File metadata and controls
25 lines (21 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using BackendSelection: BackendSelection
using Documenter: Documenter, DocMeta, deploydocs, makedocs
using ITensorFormatter: ITensorFormatter
DocMeta.setdocmeta!(
BackendSelection, :DocTestSetup, :(using BackendSelection); recursive = true
)
ITensorFormatter.make_index!(pkgdir(BackendSelection))
makedocs(;
modules = [BackendSelection],
authors = "ITensor developers <support@itensor.org> and contributors",
sitename = "BackendSelection.jl",
format = Documenter.HTML(;
canonical = "https://itensor.github.io/BackendSelection.jl",
edit_link = "main",
assets = ["assets/favicon.ico", "assets/extras.css"]
),
pages = ["Home" => "index.md", "Reference" => "reference.md"]
)
deploydocs(;
repo = "github.com/ITensor/BackendSelection.jl", devbranch = "main", push_preview = true
)