forked from clickhouse-elixir/clickhousex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
52 lines (46 loc) · 1.16 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 Clickhousex.Mixfile do
use Mix.Project
def project do
[
app: :clickhousex,
version: "0.4.0",
elixir: "~> 1.5",
deps: deps(),
package: package(),
source_url: "https://github.com/doofinder/clickhousex"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
applications: [:logger, :db_connection]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:db_connection, "~> 2.0.0"},
{:mint, "~> 1.5.1"},
{:castore, "~> 0.1"},
{:jason, "~> 1.1.2"},
{:ex_doc, "~> 0.19", only: :dev},
{:benchee, "~> 0.14.0", only: [:dev, :test]}
]
end
defp package do
[
name: "clickhousex",
organization: "doofinder",
description: description(),
maintainers: maintainers(),
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/appodeal/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"]
end
end