-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmake.jl
55 lines (50 loc) · 1.64 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using Documenter
using InMemoryDatasets
DocMeta.setdocmeta!(InMemoryDatasets, :DocTestSetup, :(using InMemoryDatasets); recursive=true)
# Build documentation.
# ====================
makedocs(
# options
# modules = [InMemoryDatasets],
doctest = false, # this needs more work
clean = false,
sitename = "InMemoryDatasets",
# format = Documenter.HTML(
# canonical = "https://sl-solution.github.io/InMemoryDataset.jl/stable/",
# edit_link = "main"
# ),
pages = Any[
"Introduction" => "index.md",
"First Steps" => "man/basics.md",
"Tutorial" => "man/tutorial.md",
"User Guide" => Any[
"Missing Values" => "man/missing.md",
"Formats" => "man/formats.md",
"Call functions on each observation" => "man/map.md",
"Row-wise operations" => "man/byrow.md",
"Transform columns" => "man/modify.md",
"Filter observations" => "man/filter.md",
"Sort" => "man/sorting.md",
"Group observations" => "man/grouping.md",
"Aggregation" => "man/aggregation.md",
"Transpose data" => "man/transpose.md",
"Joins" => "man/joins.md"
],
"Gallery" => "man/gallery.md",
"Performance tips" => "man/performance.md",
"API" => Any[
"Functions" => "lib/functions.md"
]
],
strict = true
)
# Deploy built documentation from Travis.
# =======================================
deploydocs(
# options
repo = "github.com/sl-solution/InMemoryDatasets.jl",
target = "build",
deps = nothing,
make = nothing,
devbranch = "master"
)