forked from sorentwo/braintree-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
49 lines (40 loc) · 1.06 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
defmodule Braintree.Mixfile do
use Mix.Project
@version "0.6.0"
def project do
[app: :braintree,
version: @version,
elixir: "~> 1.3",
elixirc_paths: ["lib"],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description,
package: package,
deps: deps,
name: "Braintree",
source_url: "https://github.com/sorentwo/braintree",
docs: [source_ref: "v#{@version}",
extras: ["README.md"],
main: "Braintree"]]
end
def application do
[applications: [:logger, :hackney, :xmerl]]
end
defp description do
"""
Native Braintree client library for Elixir
"""
end
defp package do
[maintainers: ["Parker Selbert"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/sorentwo/braintree-elixir"},
files: ~w(lib priv mix.exs README.md CHANGELOG.md)]
end
defp deps do
[{:hackney, "~> 1.6"},
{:ex_doc, "~> 0.11", only: :dev},
{:earmark, "~> 0.2", only: :dev},
{:credo, "~> 0.3", only: :dev}]
end
end