-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
64 lines (58 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
defmodule GenetixVrp.MixProject do
use Mix.Project
def project do
[
app: :genetix_vrp,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
deps: deps(),
name: "GenetixVrp",
package: package(),
source_url: "https://github.com/jsolana/genetix_vrp",
homepage_url: "https://github.com/jsolana/genetix_vrp",
docs: docs()
]
end
defp description() do
"Service that solve Vehicle Routing Problems (VRP) with genetic algorithm"
end
defp package() do
%{
maintainers: ["Javi Solana"],
links: %{"GitHub" => "https://github.com/jsolana/genetix_vrp"}
}
end
defp docs() do
[
# The main page in the docs
main: "GenetixVrp",
logo: "guides/logo.png",
extras: ["README.md", "guides/documentation.md"]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {GenetixVrp.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:genetix, "~> 0.3.0"},
{:tesla, "~> 1.5"},
{:plug_cowboy, "~> 2.5.2"},
{:poison, "~> 5.0"},
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:benchee, "~> 1.1"},
{:exprof, "~> 0.2.4"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:stream_data, "~> 0.5.0", only: :test}
]
end
end