-
Notifications
You must be signed in to change notification settings - Fork 22
/
mix.exs
47 lines (42 loc) · 1.08 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 NeuralNetwork.MixProject do
use Mix.Project
def project() do
[
app: :neural_network,
version: "0.2.0",
elixir: "~> 1.10",
name: "Neural Network",
description: description(),
package: package(),
source_url: "https://github.com/kblake/neural_network_elixir",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application() do
[applications: [:logger], mod: {NeuralNetwork, []}]
end
defp description() do
"""
A neural network made up of layers of neurons connected to each other to form a relationship allowing it to learn.
"""
end
defp package() do
[
maintainers: ["Karmen Blake"],
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/kblake/neural_network_elixir"
}
]
end
defp deps() do
[
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.19", only: :dev},
{:mix_test_watch, "~> 0.9", only: :dev},
{:credo, "~> 0.10", only: [:dev, :test], runtime: false}
]
end
end