-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
78 lines (71 loc) · 1.62 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
defmodule HumanName.MixProject do
use Mix.Project
@version "0.6.1"
@description "Elixir bindings for the human-name crate implemented as a safe Rust NIF."
@repo_url "https://github.com/amokan/human_name"
def project do
[
app: :human_name,
version: @version,
elixir: "~> 1.12",
description: @description,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
# Coverage
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.34.2", only: [:dev, :docs], runtime: false},
{:excoveralls, "~> 0.18.3", only: :test},
{:rustler, ">= 0.0.0", optional: true},
{:rustler_precompiled, "~> 0.8.2"}
]
end
defp docs do
[
main: "HumanName",
extras: [
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
],
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
source_ref: "v#{@version}",
source_url: @repo_url
]
end
defp package do
%{
licenses: ["MIT"],
links: %{"GitHub" => @repo_url},
maintainers: ["Adam Mokan"],
files: [
"lib",
"native",
"checksum-*.exs",
"mix.exs",
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
],
exclude_patterns: [
"native/human_name_nif/target"
]
}
end
end