-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
44 lines (38 loc) · 848 Bytes
/
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
defmodule Classifiers.Mixfile do
use Mix.Project
def project do
[
app: :fsm,
version: "0.0.1",
elixir: "~> 1.0.0 or ~> 1.1-dev",
deps: deps,
package: package,
description: "Implementations of classifier algorithms"
]
end
def package do
[
contributors: ["Beat Richartz"],
licenses: ["MIT"],
links: %{"Github": "https://github.com/elixir-cortex/classifiers"}
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:csv, "~> 1.0.0", only: :test},
{:ex_doc, "~> 0.7.1", only: :docs},
{:inch_ex, only: :docs},
{:earmark, only: :docs}
]
end
defp docs do
{ref, 0} = System.cmd("git", ["rev-parse", "--verify", "--quiet", "HEAD"])
[
source_ref: ref,
main: "overview"
]
end
end