Skip to content

Commit 2c18814

Browse files
committed
mix.exs
1 parent 3b1c647 commit 2c18814

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

mix.exs

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
defmodule BASE.Mixfile do
2+
use Mix.Project
3+
4+
def project() do
5+
[
6+
app: :base,
7+
version: "0.10.0",
8+
elixir: "~> 1.7",
9+
description: "BASE Erlang Base Library",
10+
package: package(),
11+
deps: deps()
12+
]
13+
end
14+
15+
def package do
16+
[
17+
files: ~w(doc src mix.exs LICENSE),
18+
licenses: ["ISC"],
19+
maintainers: ["Namdak Tonpa"],
20+
name: :base,
21+
links: %{"GitHub" => "https://github.com/voxoz/base"}
22+
]
23+
end
24+
25+
def application() do
26+
[mod: {:base, []}]
27+
end
28+
29+
def deps() do
30+
[
31+
{:ex_doc, "~> 0.11", only: :dev}
32+
]
33+
end
34+
end

0 commit comments

Comments
 (0)