-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
52 lines (47 loc) · 1.1 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
defmodule EctoSQLite3Extras.MixProject do
@moduledoc false
use Mix.Project
@github_url "https://github.com/orsinium-labs/ecto_sqlite3_extras"
@version "1.2.2"
def project do
[
app: :ecto_sqlite3_extras,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
description: description(),
deps: deps(),
package: package(),
docs: docs()
]
end
defp deps do
[
{:exqlite, ">= 0.13.2"},
{:table_rex, "~> 4.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ecto_sqlite3, ">= 0.11.0", only: [:test]},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false}
]
end
defp description do
"""
Helpful queries and Phoenix Live Dashboard integration for SQLite.
"""
end
defp package do
[
maintainers: ["Gram"],
licenses: ["MIT"],
links: %{"GitHub" => @github_url}
]
end
defp docs do
[
main: "readme",
source_url: @github_url,
extras: ["README.md"]
]
end
end