Current section
Files
Jump to
Current section
Files
icalendar_timezones
mix.exs
mix.exs
defmodule ICalendarTimezones.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://framagit.org/framasoft/joinmobilizon/icalendar-timezones"
def project do
[
app: :icalendar_timezones,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp package do
[
description: "A VTIMEZONE data provider for ICalendar",
maintainers: ["Thomas Citharel"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/icalendar_timezones/changelog.html",
"Source" => @source_url
}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end