-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (42 loc) · 1023 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
44
45
46
47
48
defmodule ExLang.MixProject do
use Mix.Project
@github_url "https://github.com/kim-company/ex_lang"
def project do
[
app: :ex_lang,
version: "1.0.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
name: "ExLang",
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["KIM Keep In Mind"],
files: ~w(lib priv mix.exs README.md LICENSE),
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url}
]
end
defp description do
"""
Library designed to parse and convert language and locale codes based on ISO 639-3 and RFC 3066 standards.
"""
end
end