-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
53 lines (47 loc) · 1.33 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
defmodule NeuralBridge.MixProject do
use Mix.Project
def project do
[
app: :neural_bridge,
version: "0.0.2",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
ddocs: [extras: ["README.md"], main: "readme", source_ref: "v0.0.1"],
source_url: "https://github.com/lorenzosinisi/neural_bridge",
description: description(),
package: package(),
deps: deps()
]
end
defp description do
"""
Expert system in Elixir - a bridge brain-computer-machine to transfer knowledge from an expert to an algorithm
This system implements a rules based mechanism that mimics the human interaction
with an expert of a specific domain.
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {NeuralBridge.Application, []}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Lorenzo Sinisi"],
maintainers: ["Lorenzo Sinisi"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/lorenzosinisi/neural_bridge"}
]
end
defp deps do
[
{:sanskrit, "~> 0.1.8"},
{:retex, "~> 0.1.9"},
{:decimal, "~> 2.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end