mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-22 05:19:55 +00:00
22 lines
588 B
Julia
22 lines
588 B
Julia
using Pkg
|
|
using Documenter
|
|
using SequenceVariation
|
|
|
|
makedocs(;
|
|
checkdocs = :exports,
|
|
linkcheck = true,
|
|
sitename = "SequenceVariation.jl",
|
|
format = Documenter.HTML(),
|
|
modules = [SequenceVariation],
|
|
pages = [
|
|
"Home" => "index.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,
|
|
)
|