Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Tellex.Mixfile do
use Mix.Project
def project do
[
app: :tellex,
version: "0.1.2",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
name: "tellex",
source_url: "https://github.com/shymega/tellex"
]
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
[
{:httpoison, "~> 0.13"},
{:poison, "~> 3.1"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description() do
"Tellex is an Elixir interface to the Teller.io API."
end
defp package() do
[
name: "tellex",
files: ["lib", "test", "mix.exs",
"README*", "LICENSE*"],
maintainers: ["Dom Rodriguez"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/shymega/tellex"}
]
end
end