-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
33 lines (30 loc) · 870 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
defmodule Pathway.Mixfile do
use Mix.Project
def project do
[app: :pathway,
name: "Pathway",
version: "0.2.0-dev",
source_url: "https://github.com/novabyte/pathway",
homepage_url: "http://hexdocs.pm/pathway/",
elixir: "~> 1.0",
deps: deps,
package: [
contributors: ["Chris Molozian"],
licenses: ["Apache 2.0"],
links: %{github: "https://github.com/novabyte/pathway",
docs: "http://hexdocs.pm/pathway/"}],
description: """
A HTTP client library for the Trak.io REST API.
"""]
end
def application do
[applications: [:fusco],
env: [apikey: "", timeout: 3000, retries: 2]]
end
defp deps do
[{:poison, "~> 1.2"},
{:fusco, git: "https://github.com/esl/fusco.git"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.6", only: :dev}]
end
end