forked from elixir-sqlite/exqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
75 lines (68 loc) · 1.78 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
65
66
67
68
69
70
71
72
73
74
75
defmodule Exqlite.MixProject do
use Mix.Project
def project do
[
app: :exqlite,
version: "0.4.2",
elixir: "~> 1.8",
compilers: [:elixir_make] ++ Mix.compilers(),
make_targets: ["all"],
make_clean: ["clean"],
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/warmwaffles/exqlite",
homepage_url: "https://github.com/warmwaffles/exqlite",
deps: deps(),
package: package(),
description: description(),
test_paths: test_paths(System.get_env("EXQLITE_INTEGRATION")),
elixirc_paths: elixirc_paths(Mix.env())
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:db_connection, "~> 2.1"},
{:decimal, "~> 2.0"},
{:ecto_sql, "~> 3.5.4"},
{:ecto, "~> 3.5.8"},
{:elixir_make, "~> 0.6", runtime: false},
{:ex_doc, "~> 0.23.0", only: [:dev], runtime: false},
{:jason, ">= 0.0.0", only: [:test, :docs]},
{:temp, "~> 0.4", only: [:test]}
]
end
defp description do
"An Sqlite3 Elixir library."
end
defp package do
[
files: ~w(
lib
.formatter.exs
mix.exs
README.md
LICENSE
.clang-format
c_src
Makefile*
sqlite3
),
name: "exqlite",
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/warmwaffles/exqlite",
"docs" => "https://hexdocs.pm/exqlite"
}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp test_paths(nil), do: ["test"]
defp test_paths(_any), do: ["integration_test/exqlite"]
end