Current section

Files

Jump to
buffer mix.exs
Raw

mix.exs

defmodule Buffer.Mixfile do
use Mix.Project
@version File.read!("VERSION") |> String.strip
def project do
[
app: :buffer,
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: [],
package: package,
name: "buffer",
source_url: "https://github.com/adrienmo/buffer",
description: """
Provide read and write buffers for Elixir
"""
]
end
def application do
[applications: []]
end
defp package do
[
files: ~w(lib README.md LICENSE VERSION mix.exs),
maintainers: ["Adrien Moreau"],
licenses: ["MIT"],
links: %{github: "https://github.com/adrienmo/buffer"}
]
end
end