-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
101 lines (90 loc) · 2.42 KB
/
mix.exs
File metadata and controls
101 lines (90 loc) · 2.42 KB
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
93
94
95
96
97
98
99
100
101
defmodule Unicode.String.MixProject do
use Mix.Project
@version "2.0.0"
def project do
[
app: :unicode_string,
version: @version,
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
deps: deps(),
docs: docs(),
name: "Unicode String",
source_url: "https://github.com/elixir-unicode/unicode_string",
description: description(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
plt_add_apps: ~w(mix sweet_xml)a,
flags: [:underspecs]
]
]
end
defp description do
"""
Unicode locale-aware case folding, case mapping (upcase, downcase and titlecase)
case-insensitive equality as well as word, line, grapheme and sentence
breaking and streaming.
"""
end
defp package do
[
maintainers: ["Kip Cole"],
licenses: ["Apache-2.0"],
logo: "logo.png",
links: links(),
files: [
"lib",
"priv",
"logo.png",
"mix.exs",
"README*",
"CHANGELOG*",
"LICENSE*"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:unicode_set, "~> 1.6"},
{:trie, "~> 2.0"},
{:localize, "~> 0.8 or ~> 1.0", optional: true},
{:jason, "~> 1.0", optional: true},
{:sweet_xml, "~> 0.7", runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
# {:benchee, "~> 1.0", only: :dev, optional: true},
{:ex_doc, "~> 0.23", only: [:dev, :release], optional: true, runtime: false}
]
end
def links do
%{
"GitHub" => "https://github.com/elixir-unicode/unicode_string",
"Readme" => "https://github.com/elixir-unicode/unicode_string/blob/v#{@version}/README.md",
"Changelog" =>
"https://github.com/elixir-unicode/unicode_string/blob/v#{@version}/CHANGELOG.md"
}
end
def docs do
[
source_ref: "v#{@version}",
main: "readme",
logo: "logo.png",
formatters: ["html", "markdown"],
extras: [
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
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