Files
JuliaFEM.jl/docs/make.jl
T
Jukka Aho 3e8fb609e6 remove matplotlib dependency
matplotlib cannot be installed during the generation of documentation,
ssl error. Use static images in documentation instead of automatically
generated ones.
2017-11-13 11:48:17 +02:00

22 lines
558 B
Julia

# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
using Documenter, JuliaFEM
#=
if haskey(ENV, "TRAVIS")
println("inside TRAVIS, installing PyPlot + matplotlib")
Pkg.add("PyPlot")
run(`pip install matplotlib`)
end
=#
makedocs(modules=[JuliaFEM],
format = :html,
sitename = "JuliaFEM",
pages = [
"Introduction" => "index.md",
"Examples" => "examples.md",
"API" => "api.md"
])