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