forked from finch-tensor/Finch.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.jl
30 lines (27 loc) · 846 Bytes
/
make.jl
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
30
using Finch
using Documenter
using Literate
DocMeta.setdocmeta!(Finch, :DocTestSetup, :(using Finch; using SparseArrays); recursive=true)
makedocs(;
modules=[Finch],
authors="Willow Ahrens",
repo="https://github.com/willow-ahrens/Finch.jl/blob/{commit}{path}#{line}",
sitename="Finch.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://willow-ahrens.github.io/Finch.jl",
assets=["assets/favicon.ico"],
),
pages=[
"Home" => "index.md",
"Array Formats" => "fibers.md",
"Custom Functions" => "algebra.md",
"Tensor File I/O" => "fileio.md",
"C, C++, ..." => "interop.md",
"Development Guide" => "development.md",
],
)
deploydocs(;
repo="github.com/willow-ahrens/Finch.jl",
devbranch="main",
)