-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (44 loc) · 1.06 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
defmodule EctoList.MixProject do
use Mix.Project
def project do
[
app: :ecto_list,
version: "0.1.2",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "Simple ordered model management with Ecto.",
package: package(),
# Docs
name: "ecto_list",
source_url: "https://github.com/popo63301/ecto_list",
docs: [
main: "readme",
extras: ["README.md": [], "guides/tutorial.md": [title: "Tutorial"]]
],
groups_for_extras: [
Guides: Path.wildcard("guides/*.md")
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["Sofiane Baddag"],
licenses: ["MIT"],
links: %{github: "https://github.com/popo63301/ecto_list"},
files: ~w(lib LICENSE mix.exs README.md)
]
end
defp deps do
[
{:ex_doc, "~> 0.20.2", only: [:dev, :doc], runtime: false},
{:mix_test_watch, "~> 0.8", only: :dev, runtime: false}
]
end
end