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