mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-06 04:21:33 +00:00
19 lines
505 B
Julia
19 lines
505 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",
|
|
"API" => "api.md"
|
|
])
|