-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
mix.exs
40 lines (36 loc) · 862 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
defmodule ExIcal.Mixfile do
use Mix.Project
def project do
[app: :ex_ical,
version: "0.2.0",
elixir: "~> 1.4",
description: "ICalendar parser.",
package: package(),
deps: deps(),
dialyzer: [plt_add_deps: true],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
docs: [
main: ExIcal,
source_url: "https://github.com/fazibear/export"
]
]
end
def package() do
[
maintainers: ["Michał Kalbarczyk"],
licenses: ["MIT"],
links: %{github: "https://github.com/fazibear/ex_ical"}
]
end
def application() do
[applications: [:timex]]
end
defp deps() do
[
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:credo, "~> 0.9.1", only: [:dev, :test], runtime: false},
{:timex, "~> 3.1"}
]
end
end