Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Chemist.Mixfile do
use Mix.Project
def project do
[
app: :chemist,
version: "0.2.0",
name: "Chemist",
description: "Chemist is an Elixir wrapper for the Riot API.",
source_url: "https://github.com/jscheel42/chemist",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
docs: docs(),
package: package()
]
end
def application do
[applications: [ :logger, :httpoison, :poison ]]
end
defp deps do
[
{ :distillery, "~> 1.1" },
{ :ex_doc, "~> 0.14.5", only: :dev },
{ :httpoison, "~> 0.11" },
{ :poison, "~> 2.2" }
]
end
defp docs do
[
main: "Chemist",
extras: ["README.md"],
output: ["docs"]
]
end
defp package do
[
licenses: ["MIT"],
maintainers: ["Joshua Scheel"],
links: %{"Github": "https://github.com/jscheel42/chemist",
"TravisCI": "https://travis-ci.org/jscheel42/chemist"}
]
end
end