Packages

`dpd_client` is an API client for the DPD service. It only supports a few of the API's endpoints at present.

Current section

Files

Jump to
dpd_client mix.exs
Raw

mix.exs

defmodule DpdClient.Mixfile do
use Mix.Project
def project do
[ app: :dpd_client,
version: "0.0.6",
description: """
`dpd_client` is an API client for the DPD service. It only supports a few of the API's endpoints at present.
""",
package: [
contributors: ["Josh Adams"],
licenses: ["MIT"],
links: %{
"GitHub repository" => "http://github.com/knewter/dpd_client"
},
],
deps: deps ]
end
# Configuration for the OTP application
def application do
[
applications: [
:inets,
:hackney
],
mod: { DpdClient, [] }
]
end
# Returns the list of dependencies in the format:
# { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
#
# To specify particular versions, regardless of the tag, do:
# { :barbat, "~> 0.1", github: "elixir-lang/barbat" }
defp deps do
[
{:hackney, "~> 0.13.1"},
{:poison, "~> 1.0.1"}
]
end
end