forked from jacek-adamek/decimal_arithmetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
34 lines (30 loc) · 807 Bytes
/
mix.exs
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
defmodule DecimalArithmetic.Mixfile do
use Mix.Project
def project do
[app: :decimal_arithmetic,
version: "0.1.2",
elixir: "~> 1.1",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
description: "Extended arithmetic for Decimal library.",
deps: deps()]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:decimal, "~> 1.5"},
{:ex_doc, "~> 0.18", only: :dev},
{:earmark, "~> 1.2", only: :dev},
{:mix_test_watch, "~> 0.5", only: :dev},
{:dialyxir, "~> 0.5", only: :dev}
]
end
defp package do
[ contributors: ["Jacek Adamek"],
licenses: ["MIT"],
links: %{ "Github" => "https://github.com/jacek-adamek/decimal_arithmetic" } ]
end
end