mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-22 05:19:55 +00:00
31 lines
848 B
Julia
31 lines
848 B
Julia
using Pkg
|
|
using Documenter
|
|
using SequenceVariation
|
|
using Revise
|
|
|
|
# see https://github.com/tlienart/LiveServer.jl/issues/140#issuecomment-1271591251
|
|
Revise.revise()
|
|
|
|
makedocs(;
|
|
checkdocs=:exports,
|
|
linkcheck=true,
|
|
sitename="SequenceVariation.jl",
|
|
format=Documenter.HTML(),
|
|
modules=[SequenceVariation],
|
|
pages=[
|
|
"Home" => "index.md",
|
|
"Working with variants" => "variants.md",
|
|
"Working with variations" => "variations.md",
|
|
"Comparing variations" => "compare.md",
|
|
"API Reference" => "api.md",
|
|
],
|
|
authors=replace(
|
|
join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => ""
|
|
) * ", The BioJulia Organisation, and other contributors.",
|
|
)
|
|
|
|
deploydocs(;
|
|
repo="github.com/BioJulia/SequenceVariation.jl.git",
|
|
devbranch="master",
|
|
push_preview=true,
|
|
)
|