Current section

Files

Jump to
msgpax mix.exs
Raw

mix.exs

defmodule Msgpax.Mixfile do
use Mix.Project
def project do
[app: :msgpax,
version: "0.5.0",
elixir: ">= 0.14.3",
description: description,
package: package]
end
def application, do: []
defp description do
"This library provides an API for serializing" <>
" and de-serializing Elixir terms using the MessagePack format."
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Aleksei Magusev"],
licenses: ["ISC"],
links: %{"GitHub" => "https://github.com/lexmag/msgpax"}]
end
end