-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
47 lines (42 loc) · 1.06 KB
/
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
46
47
defmodule GoodTimes.Mixfile do
use Mix.Project
def project do
[
app: :good_times,
version: "1.1.2",
name: "GoodTimes",
source_url: "https://github.com/DevL/good_times",
elixir: "~> 1.0",
deps: deps(),
preferred_cli_env: [coveralls: :test, "coveralls.html": :test, "test.watch": :test],
test_coverage: [tool: ExCoveralls],
description: description(),
package: package()
]
end
defp description do
"""
Expressive and easy to use datetime functions.
"""
end
defp package do
[
maintainers: ["Lennart Fridén", "Martin Svalin"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/DevL/good_times"}
]
end
def application do
[applications: []]
end
defp deps do
[
{:earmark, "~> 1.3", only: :dev},
{:ex_doc, "~> 0.19", only: :dev},
{:inch_ex, "~> 2.0", only: :docs},
{:excoveralls, "~> 0.10", only: :test},
{:mix_test_watch, "~> 0.9", only: :test}
]
end
end