Packages

An elixir client for the Orchestre National d'Île-de-France public API

Retired package: Release invalid - The underlying public API does not exist anymore.

Current section

Files

Jump to
ondix mix.exs
Raw

mix.exs

defmodule Ondix.MixProject do
use Mix.Project
def project do
[
app: :ondix,
version: "0.1.1",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "An elixir client for the Orchestre National d'Île-de-France public API",
source_url: "https://github.com/Lucassifoni/ondix",
package: [
name: "ondix",
licenses: ["MIT"],
links: %{
"github" => "https://github.com/Lucassifoni/ondix",
},
files: ~w(lib .formatter.exs mix.exs README* LICENSE*)
],
]
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, "~> 1.5"},
{:poison, "~> 3.1"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end