forked from twined/ex_chimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
53 lines (48 loc) · 1.1 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 ExChimp.Mixfile do
use Mix.Project
@version "0.0.5"
@description "Basic/minimal Mailchimp API client."
def project do
[
app: :ex_chimp,
version: @version,
elixir: "~> 1.2",
description: @description,
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
# Docs
name: "ExChimp",
docs: [source_ref: "v#{@version}", source_url: "https://github.com/twined/ex_chimp"]
]
end
defp package do
[
maintainers: ["Twined Networks"],
licenses: ["MIT"],
files: [
"config",
"lib",
"test",
"LICENSE",
"mix.exs",
"README.md",
".travis.yml",
"CHANGELOG.md"
],
links: %{github: "https://github.com/twined/ex_chimp"}
]
end
def application do
[applications: [:logger, :httpoison]]
end
defp deps do
[
{:httpoison, "~> 0.10 or ~> 1.1"},
{:jason, "~> 1.0"},
{:exvcr, "~> 0.10", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end