-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
30 lines (27 loc) · 784 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
defmodule Experf.Mixfile do
use Mix.Project
def project do
[ app: :experf,
version: "0.0.3",
elixir: ">= 1.0.0",
escript: [main_module: Experf],
deps: deps ]
end
# Configuration for the OTP application
def application do
[ applications: [:httpotion, :logger],
registered: [:results],
mod: { Experf, [] } ]
end
# Returns the list of dependencies in the format:
# { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
#
# To specify particular versions, regardless of the tag, do:
# { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" }
defp deps do
[
{ :httpotion, github: "myfreeweb/httpotion" },
{ :descriptive_statistics, github: "pusewicz/descriptive_statistics"}
]
end
end