Current section

Files

Jump to
calendar mix.exs
Raw

mix.exs

defmodule Calendar.Mixfile do
use Mix.Project
@version "0.18.0"
def project do
[
app: :calendar,
name: "Calendar",
version: @version,
elixir: "~> 1.4",
consolidate_protocols: false,
package: package(),
description: description(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/lau/calendar"
]
end
def application do
[applications: [:logger, :tzdata]]
end
def deps do
[
{:tzdata, "~> 0.5.20 or ~> 0.1.201603 or ~> 1.0"},
{:ex_doc, ">= 0.20.2", only: :dev, runtime: false}
]
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Lau Taarnskov"],
links: %{"GitHub" => "https://github.com/lau/calendar"},
files: ~w(lib priv mix.exs README* LICENSE*
CHANGELOG*)
}
end
defp docs do
[
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}"
]
end
defp description do
"""
Calendar is a datetime library for Elixir.
Timezone support via its sister package `tzdata`.
Safe parsing and formatting of standard formats (ISO, RFC, etc.), strftime formatting. Extendable through protocols.
"""
end
end