Flux.jl/docs/make.jl
2017-09-07 01:49:46 -04:00

22 lines
603 B
Julia

using Documenter, Flux
makedocs(modules=[Flux],
doctest = false,
format = :html,
analytics = "UA-36890222-9",
sitename = "Flux",
assets = ["../flux.css"],
pages = ["Home" => "index.md",
"Models" =>
["Basics" => "models/basics.md",
"Recurrence" => "models/recurrence.md"],
"Contributing & Help" => "contributing.md"])
deploydocs(
repo = "github.com/FluxML/Flux.jl.git",
target = "build",
osname = "linux",
julia = "0.6",
deps = nothing,
make = nothing)