-
Notifications
You must be signed in to change notification settings - Fork 71
/
mix.exs
66 lines (58 loc) · 1.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
defmodule Tzdata.Mixfile do
use Mix.Project
@version "1.1.2"
def project do
[
app: :tzdata,
name: "tzdata",
version: @version,
elixir: "~> 1.8",
package: package(),
description: description(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/lau/tzdata"
]
end
def application do
[
extra_applications: [:logger],
env: env(),
mod: {Tzdata.App, []}
]
end
defp deps do
[
{:hackney, "~> 1.17"},
{:ex_doc, "~> 0.21", only: :dev, runtime: false}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}"
]
end
defp env do
[
autoupdate: :enabled,
data_dir: nil,
http_client: Tzdata.HTTPClient.Hackney
]
end
defp description do
"""
Tzdata is a parser and library for the tz database.
"""
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Lau Taarnskov"],
links: %{"GitHub" => "https://github.com/lau/tzdata"},
files: ~w(lib priv mix.exs README* LICENSE*
CHANGELOG*)
}
end
end