-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmix.exs
42 lines (38 loc) · 1.02 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
defmodule DigOc.Mixfile do
use Mix.Project
def project do
[app: :digoc,
version: "0.3.3",
elixir: "~> 1.0",
description: "An Elixir client for the Digital Ocean API v2.",
package: package,
docs: [
source_url: "https://github.com/kevinmontuori/digoc",
homepage_url: "https://kevinmontuori.github.io/digoc/doc",
main: "README",
readme: "README.md"
],
deps: deps]
end
def application do
[applications: [:logger, :httpoison],
mod: { DigOc.Supervisor, []}]
end
def package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "test"],
contributors: ["Kevin Montuori"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/kevinmontuori/digoc",
"Documentation" => "https://kevinmontuori.github.io/digoc"}
]
end
defp deps do
[
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.6", only: :dev},
{:poison, "~> 1.3.0"},
{:httpoison, "~> 0.5"}
]
end
end