forked from lpil/icalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
43 lines (37 loc) · 962 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
defmodule ICalendar.Mixfile do
use Mix.Project
@version "1.0.4"
def project do
[
app: :icalendar,
version: @version,
elixir: "~> 1.8",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "ICalendar",
source_url: "https://github.com/lpil/icalendar",
description: "An ICalendar file generator",
package: [
maintainers: ["Louis Pilfold"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/lpil/icalendar"}
]
]
end
def application do
[applications: [:timex]]
end
defp deps do
[
# Automatic test runner
{:mix_test_watch, ">= 0.0.0", only: :dev},
# Markdown processor
{:earmark, "~> 1.3", only: [:dev, :test]},
# Documentation generator
{:ex_doc, "~> 0.19", only: [:dev, :test]},
# For full timezone support
{:timex, "~> 3.4"}
]
end
end