-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmix.exs
More file actions
44 lines (39 loc) · 1.06 KB
/
mix.exs
File metadata and controls
44 lines (39 loc) · 1.06 KB
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
defmodule Gold.Mixfile do
use Mix.Project
def project do
[app: :gold,
version: "0.16.3",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: description(),
consolidate_protocols: Mix.env != :test,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.travis": :test, "coveralls.html": :test]
]
end
def application do
[applications: [:logger, :httpoison]]
end
defp deps do
[{:decimal, "~> 1.1"},
{:httpoison, "~> 0.7"},
{:poison, "~> 3.0 or ~> 2.0"},
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev},
{:excoveralls, "~> 0.6", only: :test}
]
end
defp description do
"""
An Elixir library to interface with the Bitcoin core JSON-RPC API.
"""
end
defp package do
[maintainers: ["Leon Mergen", "Bartosz Kalinowski"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/solatis/gold"}]
end
end