-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
47 lines (42 loc) · 1.01 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
defmodule Essence.Mixfile do
use Mix.Project
def project do
[app: :essence,
version: "0.3.0",
elixir: "~> 1.3",
description: description(),
package: package(),
deps: deps()]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[]
end
defp description do
"""
Essence is a library for Natural Language Processing
and Text Summarization in Elixir.
"""
end
defp package do
[
name: :essence,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Nicolas Bettenburg"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/nicbet/essence",
"Docs" => "https://nicbet.github.io/essence"
}
]
end
defp deps do
[ {:exprof, "~> 0.2.0"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:credo, "~> 0.9.0-rc1", only: [:dev, :test], runtime: false}
]
end
end