diff --git a/docs/deploy.jl b/docs/deploy.jl new file mode 100644 index 0000000..2189614 --- /dev/null +++ b/docs/deploy.jl @@ -0,0 +1,11 @@ +# This file is a part of JuliaFEM. +# License is MIT: see https://github.com/JuliaFEM/BoundingSphere.jl/blob/master/LICENSE + +using Documenter + +deploydocs( + repo = "github.com/JuliaFEM/BoundingSphere.jl.git", + julia = "0.6", + target = "build", + deps = nothing, + make = nothing) diff --git a/docs/make.jl b/docs/make.jl new file mode 100644 index 0000000..ed1dfab --- /dev/null +++ b/docs/make.jl @@ -0,0 +1,12 @@ +# This file is a part of JuliaFEM. +# License is MIT: see https://github.com/JuliaFEM/BoundingSphere.jl/blob/master/LICENSE + +using Documenter, BoundingSphere + +makedocs(modules=[BoundingSphere], + format = :html, + checkdocs = :all, + sitename = "BoundingSphere.jl", + authors = "Jukka Aho", + analytics = "UA-83590644-1", + pages = ["index.md"]) diff --git a/docs/src/index.md b/docs/src/index.md new file mode 100644 index 0000000..9d267b6 --- /dev/null +++ b/docs/src/index.md @@ -0,0 +1,10 @@ +# Introduction + +Package contains algorithms to calculate smallest enclosing sphere for a given +set of points in N dimensions. + +```@meta +DocTestSetup = quote + using BoundingSphere +end +```