Current section
Files
Jump to
Current section
Files
cryptowatch_ex
mix.exs
mix.exs
defmodule Cryptex.Mixfile do
use Mix.Project
@version "0.6.0"
def project do
[
app: :cryptowatch_ex,
version: @version,
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
package: package(),
docs: [extras: ["README.md"]],
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
[
{:httpoison, "~> 0.13"},
{:poison, "~> 3.1"},
{:atomic_map, "~> 0.8"},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package do
[
description: "A thin wrapper around public Cryptowatch API",
licenses: ["MIT License"],
maintainers: ["Mads Hargreave"],
links: %{
github: "https://github.com/madshargreave/cryptex",
docs: "http://hexdocs.pm/cryptowatch_ex/#{@version}/"
}
]
end
end