Skip to content

Commit

Permalink
Setup Documenter
Browse files Browse the repository at this point in the history
Closes issue #10.
  • Loading branch information
ahojukka5 committed Jul 24, 2018
1 parent bc19de9 commit 6588478
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/deploy.jl
Original file line number Diff line number Diff line change
@@ -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)
11 changes: 11 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -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, BoundingSphere

makedocs(modules=[BoundingSphere],
format = :html,
checkdocs = :all,
sitename = "BoundingSphere.jl",
analytics = "UA-83590644-1",
pages = ["index.md"])
10 changes: 10 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit 6588478

Please sign in to comment.