Current section

Files

Jump to
jazz mix.exs
Raw

mix.exs

defmodule Jazz.Mixfile do
use Mix.Project
def project do
[ app: :jazz,
version: "0.2.1",
elixir: "~> 1.0.0-rc1",
package: package,
description: "JSON handling library for Elixir." ]
end
defp package do
[ contributors: ["meh"],
licenses: ["WTFPL"],
links: %{"GitHub" => "https://github.com/meh/jazz"} ]
end
end