-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
40 lines (34 loc) · 826 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 CalendarTranslations.Mixfile do
use Mix.Project
@version "0.0.4"
def project do
[app: :calendar_translations,
version: @version,
elixir: "~> 1.1",
package: package(),
description: description(),
deps: deps(),
# Docs
name: "CalendarTranslations",
docs: [main: "CalendarTranslations",
source_ref: "v#{@version}",
source_url: "https://github.com/padde/calendar_translations"]
]
end
defp deps do
[
{:calendar, "~> 0.11"},
{:ex_doc, "~> 0.14", only: :dev}
]
end
defp package do
[maintainers: ["Patrick Oscity"],
licenses: ["MIT"],
links: %{github: "https://github.com/padde/calendar_translations"}]
end
defp description do
"""
Translations for the Calendar library.
"""
end
end