-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
92 lines (83 loc) · 2.16 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
defmodule Unicode.MixProject do
use Mix.Project
@version "1.20.0"
def project do
[
app: :unicode,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
deps: deps(),
docs: docs(),
name: "Unicode",
source_url: "https://github.com/elixir-unicode/unicode",
description: description(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
plt_add_apps: ~w(mix inets public_key)a,
ignore_warnings: ".dialyzer_ignore_warnings"
]
]
end
defp description do
"""
Functions to introspect the Unicode character database and
to provide fast codepoint lookups and guards.
"""
end
defp package do
[
maintainers: ["Kip Cole"],
licenses: ["Apache-2.0"],
logo: "logo.png",
links: links(),
files: [
"lib",
"data",
"logo.png",
"mix.exs",
"README*",
"CHANGELOG*",
"LICENSE*"
]
]
end
def application do
[
extra_applications: [:logger, :public_key, :inets, :ssl]
]
end
defp deps do
[
{:benchee, "~> 1.0", only: :dev, optional: true},
{:ex_doc, "~> 0.24", only: [:dev, :release], runtime: false, optional: true},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false, optional: true}
]
end
def links do
%{
"GitHub" => "https://github.com/elixir-unicode/unicode",
"Readme" => "https://github.com/elixir-unicode/unicode/blob/v#{@version}/README.md",
"Changelog" => "https://github.com/elixir-unicode/unicode/blob/v#{@version}/CHANGELOG.md"
}
end
def docs do
[
source_ref: "v#{@version}",
main: "readme",
logo: "logo.png",
extras: [
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
formatters: ["html"],
skip_undefined_reference_warnings_on: ["changelog", "CHANGELOG.md"]
]
end
defp elixirc_paths(:test), do: ["lib", "mix", "src", "test"]
defp elixirc_paths(:dev), do: ["lib", "mix", "src", "bench"]
defp elixirc_paths(_), do: ["lib", "src"]
end