-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
53 lines (48 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
52
53
defmodule ExClearbit.Mixfile do
use Mix.Project
def project do
[
app: :ex_clearbit,
version: "0.2.3",
name: "ExClearbit",
elixir: "~> 1.13",
description: description(),
package: package(),
docs: [
main: "ExClearbit",
extras: ["README.md"],
source_url: "https://github.com/keithmattix/github"
],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger, :httpoison, :exconstructor, :poison], mod: {ExClearbit, []}]
end
defp description do
"A lightweight API client for Clearbit"
end
defp package do
[
maintainers: ["Keith Mattix II"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/keithmattix/ex_clearbit"}
]
end
defp deps do
[
{:httpoison, "~> 1.3"},
{:poison, "~> 4.0"},
{:exconstructor, "~> 1.1"},
{:ex_doc, "~> 0.19", only: [:dev]},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:git_hooks, "~> 0.7.2", only: [:dev], runtime: false}
]
end
end