-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmake.jl
More file actions
25 lines (21 loc) · 792 Bytes
/
make.jl
File metadata and controls
25 lines (21 loc) · 792 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 Documenter: Documenter, DocMeta, deploydocs, makedocs
using ITensorFormatter: ITensorFormatter
using NamedGraphs: NamedGraphs
DocMeta.setdocmeta!(NamedGraphs, :DocTestSetup, :(using NamedGraphs); recursive = true)
ITensorFormatter.make_index!(pkgdir(NamedGraphs))
makedocs(;
modules = [NamedGraphs],
authors = "ITensor developers <support@itensor.org> and contributors",
sitename = "NamedGraphs.jl",
format = Documenter.HTML(;
canonical = "https://itensor.github.io/NamedGraphs.jl",
edit_link = "main",
assets = ["assets/favicon.ico", "assets/extras.css"]
),
pages = ["Home" => "index.md", "Reference" => "reference.md"]
)
deploydocs(;
repo = "github.com/ITensor/NamedGraphs.jl",
devbranch = "main",
push_preview = true
)