-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
45 lines (39 loc) · 908 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
38
39
40
41
42
43
44
45
defmodule Convertat.Mixfile do
use Mix.Project
@version "1.1.0"
def project do
[
app: :convertat,
version: @version,
name: "Convertat",
source_url: "https://github.com/whatyouhide/convertat",
elixir: "~> 1.0",
deps: deps,
package: package,
description: description,
test_coverage: [tool: ExCoveralls],
]
end
def application do
[applications: [:logger]]
end
defp description do
"""
Provides functions for converting from and to arbitrary bases.
"""
end
defp package do
[
contributors: ["Andrea Leopardi"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/whatyouhide/convertat"},
]
end
defp deps do
[
{:ex_doc, "~> 0.6", only: :docs},
{:benchfella, github: "alco/benchfella", only: :dev},
{:excoveralls, "~> 0.3", only: :test},
]
end
end