We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1c647 commit 2c18814Copy full SHA for 2c18814
mix.exs
@@ -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
24
25
+ def application() do
26
+ [mod: {:base, []}]
27
28
29
+ def deps() do
30
31
+ {:ex_doc, "~> 0.11", only: :dev}
32
33
34
+end
0 commit comments