2017-08-05 12:00:16 +03:00
|
|
|
# This file is a part of JuliaFEM.
|
|
|
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
|
|
|
|
|
|
using Documenter, JuliaFEM
|
|
|
|
|
|
2017-11-13 11:30:48 +02:00
|
|
|
#=
|
2017-08-05 12:00:16 +03:00
|
|
|
if haskey(ENV, "TRAVIS")
|
|
|
|
|
println("inside TRAVIS, installing PyPlot + matplotlib")
|
|
|
|
|
Pkg.add("PyPlot")
|
|
|
|
|
run(`pip install matplotlib`)
|
|
|
|
|
end
|
2017-11-13 11:30:48 +02:00
|
|
|
=#
|
2017-08-05 12:00:16 +03:00
|
|
|
|
|
|
|
|
makedocs(modules=[JuliaFEM],
|
|
|
|
|
format = :html,
|
|
|
|
|
sitename = "JuliaFEM",
|
|
|
|
|
pages = [
|
|
|
|
|
"Introduction" => "index.md",
|
2017-08-05 13:23:09 +03:00
|
|
|
"Examples" => "examples.md",
|
2017-08-05 12:00:16 +03:00
|
|
|
"API" => "api.md"
|
|
|
|
|
])
|