Flux.jl/docs/make.jl

22 lines
603 B
Julia
Raw Normal View History

2017-01-16 00:46:50 +00:00
using Documenter, Flux
2017-01-17 20:04:01 +00:00
makedocs(modules=[Flux],
2017-01-17 20:24:53 +00:00
doctest = false,
2017-01-16 00:46:50 +00:00
format = :html,
2017-01-16 15:34:14 +00:00
analytics = "UA-36890222-9",
2017-01-17 20:04:01 +00:00
sitename = "Flux",
2017-01-17 20:24:49 +00:00
assets = ["../flux.css"],
2017-01-18 00:39:00 +00:00
pages = ["Home" => "index.md",
2017-09-07 05:49:46 +00:00
"Models" =>
["Basics" => "models/basics.md",
"Recurrence" => "models/recurrence.md"],
2017-09-07 05:38:41 +00:00
"Contributing & Help" => "contributing.md"])
2017-01-16 00:46:50 +00:00
deploydocs(
2017-09-07 05:11:43 +00:00
repo = "github.com/FluxML/Flux.jl.git",
2017-01-16 00:46:50 +00:00
target = "build",
osname = "linux",
2017-05-02 12:48:34 +00:00
julia = "0.6",
2017-01-16 00:46:50 +00:00
deps = nothing,
make = nothing)