-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
87 lines (78 loc) · 2.03 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
defmodule Text.MixProject do
use Mix.Project
@version "0.2.0"
def project do
[
app: :text,
version: @version,
docs: docs(),
elixir: "~> 1.8",
name: "Text",
source_url: "https://github.com/kipcole9/text",
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
ignore_warnings: ".dialyzer_ignore_warnings",
plt_add_apps: ~w(inets jason mix meeseeks)a
]
]
end
defp description do
"""
Text analysis and processing for Elixir including ngram,
language detection and more.
"""
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["Kip Cole"],
licenses: ["Apache 2.0"],
links: links(),
files: [
"lib",
"priv",
"mix.exs",
"README*",
"CHANGELOG*",
"LICENSE*"
]
]
end
def docs do
[
source_ref: "v#{@version}",
main: "readme",
logo: "logo.png",
skip_undefined_reference_warnings_on: ["changelog", "CHANGELOG.md"],
extras: ["README.md", "CHANGELOG.md", "LICENSE.md"]
]
end
defp deps do
[
{:flow, "~> 0.14"},
{:meeseeks, "~> 0.15", only: [:dev, :test], optional: true},
{:ex_doc, "~> 0.21", only: [:dev, :release], optional: true},
{:benchee, "~> 1.0", only: :dev, runtime: false},
{:jason, "~> 1.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false, optional: true}
]
end
def links do
%{
"GitHub" => "https://github.com/kipcole9/text",
"Readme" => "https://github.com/kipcole9/text/blob/v#{@version}/README.md",
"Changelog" => "https://github.com/kipcole9/text/blob/v#{@version}/CHANGELOG.md"
}
end
defp elixirc_paths(:test), do: ["lib", "mix", "test"]
defp elixirc_paths(:dev), do: ["lib", "mix", "bench"]
defp elixirc_paths(_), do: ["lib"]
end