forked from atlas-forks/clickhousex
-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
67 lines (60 loc) · 1.53 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
defmodule Clickhousex.Mixfile do
use Mix.Project
def project do
[
app: :clickhousex,
version: "0.5.0",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
package: package()
]
end
defp elixirc_paths(:test), do: ["lib", "priv/repo", "test/support"]
defp elixirc_paths(_), do: ["lib", "priv/repo"]
# 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.0"},
{:mint, "~> 1.4"},
{:castore, "~> 0.1"},
{:jason, "~> 1.0"},
{:ex_doc, "~> 0.22", only: :dev},
{:benchee, "~> 1.0", only: [:dev, :test]},
{:credo, "~> 1.6", only: [:dev], runtime: false},
{:bypass, "~> 2.1", only: [:test]},
{:dialyxir, "~> 1.2", only: [:test, :dev], runtime: false},
{:bandit, "~> 0.6.4", only: [:test, :dev]}
]
end
defp package do
[
name: "clickhousex",
description: description(),
maintainers: maintainers(),
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/clickhouse-elixir/clickhousex"}
]
end
defp description do
"ClickHouse driver for Elixir (uses HTTP)."
end
defp maintainers do
[
"Roman Chudov",
"Konstantin Grabar",
"Ivan Zinoviev",
"Evgeniy Shurmin",
"Alexey Lukyanov",
"Yaroslav Rogov",
"Ivan Sokolov",
"Georgy Sychev"
]
end
end