-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
43 lines (37 loc) · 938 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
38
39
40
41
42
43
defmodule Codec.Mixfile do
use Mix.Project
def project do
[app: :codec,
version: "0.1.2",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps()]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger]]
end
defp deps do
[
{:private, "> 0.0.0"},
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
]
end
defp description do
"""
facilitates the development of layered binary protocols while mostly sticking with the Elixir bit field syntax.
"""
end
defp package do
[
name: :codec,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Chris Russo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/carusso/codec"}
]
end
end