2020-06-16 15:12:46 +00:00
|
|
|
using Documenter
|
2020-07-24 14:52:48 +00:00
|
|
|
using Optinum
|
2020-06-16 15:12:46 +00:00
|
|
|
|
|
|
|
makedocs(
|
2020-07-24 14:52:48 +00:00
|
|
|
modules = [Optinum],
|
|
|
|
sitename = "Optinum.jl",
|
2020-06-16 15:12:46 +00:00
|
|
|
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
|
|
|
|
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
|
|
|
|
pages = [
|
2020-06-16 15:54:44 +00:00
|
|
|
"Accueil" => "index.md"
|
2020-06-16 15:12:46 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
deploydocs(
|
2020-07-24 14:52:48 +00:00
|
|
|
repo = "github.com/mathn7/Optinum.git",
|
2020-06-16 15:12:46 +00:00
|
|
|
branch = "gh-pages",
|
|
|
|
devbranch = "master",
|
|
|
|
)
|