-
Notifications
You must be signed in to change notification settings - Fork 25
/
mix.exs
48 lines (43 loc) · 1.27 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
defmodule SimpleBayes.Mixfile do
use Mix.Project
def project do
[
app: :simple_bayes,
version: "1.0.0",
elixir: "~> 1.5",
name: "Simple Bayes",
package: package(),
description: "A Simple Bayes (a.k.a. Naive Bayes) implementation in Elixir.",
start_permanent: Mix.env == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
aliases: ["publish": ["hex.publish", &git_tag/1]],
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:math, ">= 0.0.0"},
{:decimal, ">= 0.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:faker, ">= 0.0.0", only: :test},
{:stemmer, "~> 1.0", only: :test},
{:excoveralls, "~> 0.7", only: :test},
]
end
defp package do
[
maintainers: ["Fred Wu"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/fredwu/simple_bayes"}
]
end
defp git_tag(_args) do
System.cmd "git", ["tag", "v" <> Mix.Project.config[:version]]
System.cmd "git", ["push"]
System.cmd "git", ["push", "--tags"]
end
end