-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
37 lines (33 loc) · 798 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
35
36
37
defmodule DecimalArithmetic.Mixfile do
use Mix.Project
def project do
[
app: :decimal_arithmetic,
version: "2.1.0",
elixir: "~> 1.2",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
description: "Extended arithmetic for Decimal library.",
deps: deps()
]
end
def application do
[]
end
defp deps do
[
{:decimal, "~> 2.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false}
]
end
defp package do
[
contributors: ["Jacek Adamek"],
maintainers: ["Jacek Adamek"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/jacek-adamek/decimal_arithmetic"}
]
end
end