Packages

methods for accessing the IEX Cloud api

Current section

Files

Jump to
iex_cloud mix.exs
Raw

mix.exs

defmodule IEXCloud.MixProject do
use Mix.Project
def project do
[
app: :iex_cloud,
version: "0.1.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "methods for accessing the IEX Cloud api",
package: [
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/fivetwentysix/elixir-iexcloud"}
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :ssl, :inets]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:jason, "~> 1.1"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
end