Current section
Files
Jump to
Current section
Files
itsfound_postage
mix.exs
mix.exs
defmodule ItsfoundPostage.MixProject do
use Mix.Project
def project do
[
description: "helper functions for using postage library - in elixir",
source_url: github_link(),
package: package(),
app: :itsfound_postage,
version: "0.1.1",
elixir: "~> 1.18.4",
start_permanent: Mix.env() == :prod,
deps: deps()
]
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
[
{:confex, "~> 3.5.1"},
{:poison, "~> 6.0"},
{:httpotion, "~> 3.2.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package() do
[
maintainers: ["Netflakes"],
licenses: ["MIT"],
links: %{"GitHub" => github_link()}
]
end
defp github_link() do
"https://github.com/LukeJ80/itsfound_postage"
end
end