-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
35 lines (31 loc) · 816 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
defmodule Keys1value.Mixfile do
use Mix.Project
def project do
[app: :keys1value,
version: "2.0.7",
language: :erlang,
erlc_options: [
{:d, :erlang.list_to_atom('ERLANG_OTP_VERSION_' ++ :erlang.system_info(:otp_release))},
:deterministic,
:debug_info,
:warn_export_vars,
:warn_unused_import,
:warn_missing_spec,
:warnings_as_errors],
description: description(),
package: package(),
deps: deps()]
end
defp deps do
[]
end
defp description do
"Erlang Set Associative Map For Key Lists"
end
defp package do
[files: ~w(src doc rebar.config README.markdown LICENSE),
maintainers: ["Michael Truog"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/okeuday/keys1value"}]
end
end