-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
48 lines (43 loc) · 868 Bytes
/
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
defmodule Instrumental.Mixfile do
use Mix.Project
def project do
[
app: :instrumental,
version: "0.1.2",
elixir: "~> 1.0",
deps: deps,
package: package,
description: description,
]
end
def application do
[
mod: {Instrumental, []},
applications: [
:logger
],
registered: [
Instrumental.Supervisor,
Instrumental.Connection,
],
env: [
host: "collector.instrumentalapp.com",
port: 8000,
token: "",
],
]
end
defp deps do
[]
end
defp description do
"""
An Elixir client for Instrumental (http://instrumentalapp.com).
"""
end
defp package do
%{licenses: ["MIT"],
contributors: ["Jamie Winsor"],
links: %{"Github" => "https://github.com/undeadlabs/instrumental-ex"}}
end
end