-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
37 lines (33 loc) · 947 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
defmodule Buffer.Mixfile do
use Mix.Project
@version File.read!("VERSION") |> String.trim()
def project do
[
app: :buffer,
version: @version,
elixir: "~> 1.5",
test_coverage: [tool: ExCoveralls],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: [{:ex_doc, ">= 0.0.0", only: :dev}, {:excoveralls, "~> 0.10.4", only: :test}],
package: package(),
name: "buffer",
source_url: "https://github.com/adrienmo/buffer",
elixirc_options: [warnings_as_errors: true],
description: """
Provide read and write buffers for Elixir
"""
]
end
def application do
[applications: [], mod: {Buffer, []}]
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