-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
53 lines (47 loc) · 1.02 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 Mutiny.MixProject do
use Mix.Project
@version "0.1.0"
@repo_url "https://github.com/newaperio/mutiny"
def project do
[
app: :mutiny,
version: @version,
elixir: "~> 1.9",
elixirc_paths: ~w(lib test/support),
deps: deps(),
package: package(),
docs: docs()
]
end
def application do
[]
end
defp deps do
[
{:ecto_sql, "~> 3.0"},
{:ex_doc, "~> 0.22", only: :dev, runtime: false}
]
end
defp package do
[
description: "Simple database immutability",
maintainers: ["N. G. Scheurich"],
licenses: ["MIT"],
links: %{
"GitHub" => @repo_url,
"Made by NewAperio" => "https://newaperio.com/"
}
]
end
defp docs do
[
name: "Mutiny",
main: "getting-started",
logo: "mark.png",
source_ref: "v#{@version}",
canonical: "https://hexdocs.pm/mutiny",
source_url: "https://github.com/newaperio/mutiny",
extras: ["guides/getting-started.md"]
]
end
end