-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
59 lines (53 loc) · 1.25 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
defmodule ISN.Mixfile do
use Mix.Project
@version "3.0.1"
def project do
[
app: :isn,
version: @version,
elixir: "~> 1.9",
deps: deps(),
test_paths: ["test"],
# Hex
description: description(),
package: package(),
# Docs
name: "ISN",
docs: [
source_ref: "v#{@version}",
source_url: "https://github.com/Frost/isn",
extras: ["README.md"]
]
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[extra_applications: [:logger]]
end
defp description do
"""
Ecto types for the postgreSQL isn extension.
"""
end
defp package do
[
files: ~w(lib README.md mix.exs),
maintainers: ["Martin Frost"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/Frost/isn"}
]
end
defp deps do
[
{:postgrex, "~> 0.17"},
{:ecto, "~> 3.0"},
{:ecto_sql, "~> 3.0"},
{:credo, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.30", only: :dev, runtime: false},
{:makeup_html, ">= 0.0.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false}
]
end
end