Packages

An elixir client for PagerDuty's API v2

Retired package: Deprecated - No longer maintained, do not recommend using.

Current section

Files

Jump to
mixduty mix.exs
Raw

mix.exs

defmodule Mixduty.MixProject do
use Mix.Project
def project do
[
app: :mixduty,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
name: "Mixduty",
source_url: "https://github.com/PagerDuty/mixduty",
deps: deps()
]
end
defp description do
"""
An elixir client for PagerDuty's API v2
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Ian Minoso"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/PagerDuty/mixduty"}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.4"},
{:poison, "~> 3.1"},
{:ex_doc, "~> 0.18.0", only: :dev, runtime: false}
]
end
end