forked from chengchingwen/NeuralAttentionlib.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.jl
26 lines (23 loc) · 879 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
using NeuralAttentionlib
using Documenter
DocMeta.setdocmeta!(NeuralAttentionlib, :DocTestSetup, :(using NeuralAttentionlib); recursive=true)
makedocs(;
modules=[NeuralAttentionlib.Matmul, NeuralAttentionlib.Masks, NeuralAttentionlib.Functional],
authors="chengchingwen <adgjl5645@hotmail.com> and contributors",
repo="https://github.com/chengchingwen/NeuralAttentionlib.jl/blob/{commit}{path}#{line}",
sitename="NeuralAttentionlib.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://chengchingwen.github.io/NeuralAttentionlib.jl",
assets=String[],
),
pages=[
"Home" => "index.md",
"Terminology" => "term.md",
"Example" => "example.md",
"API Reference" => "api.md",
],
)
deploydocs(;
repo="github.com/chengchingwen/NeuralAttentionlib.jl",
)