-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
39 lines (35 loc) · 810 Bytes
/
mix.exs
File metadata and controls
39 lines (35 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
defmodule CONREC.MixProject do
use Mix.Project
def project do
[
app: :conrex,
description: description(),
package: package(),
version: "1.0.0",
elixir: "~> 1.9",
deps: deps(),
source_url: "https://github.com/NAISorg/conrex/"
]
end
defp description() do
"""
An implementation of the CONREC contouring algorithm, described at
<http://paulbourke.net/papers/conrec/>.
"""
end
defp package() do
%{
name: "conrex",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/NAISorg/conrex/"}
}
end
defp deps do
[
{:geo, "~> 3.1"},
{:topo, "~> 0.4.0"},
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
]
end
end