forked from kopera/erlang-influxdb
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmix.exs
More file actions
40 lines (36 loc) · 823 Bytes
/
mix.exs
File metadata and controls
40 lines (36 loc) · 823 Bytes
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
defmodule InfluxDB.Mixfile do
use Mix.Project
def project do
[app: :influxdb,
name: "InfluxDB",
version: "0.2.1",
elixir: "~> 1.0",
package: package(),
description: "InfluxDB client library",
deps: deps()]
end
def application do
[mod: {:influxdb_app, []},
registered: [:influxdb_sup],
applications: [:inets, :jsone]]
end
defp package() do
[maintainers: ["Ali Sabil"],
files: [
"lib",
"LICENSE*",
"mix.exs",
"README*",
"rebar.config",
"rebar.lock",
"src"
],
build_tools: ["mix", "rebar3"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/kopera/erlang-influxdb"}]
end
defp deps do
[{:jsone, "~> 1.4.3"},
{:ex_doc, "~> 0.15.0", only: :dev}]
end
end