forked from CyrusNuevoDia/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
38 lines (34 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
defmodule Geocoder.Mixfile do
use Mix.Project
def project do
[app: :geocoder,
description: "A simple, efficient geocoder/reverse geocoder with a built-in cache.",
version: "0.7.0",
elixir: "~> 1.2",
package: package(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
deps: deps()]
end
def package do
[licenses: ["MIT"],
maintainers: ["Kash Nouroozi", "Arjan Scherpenisse"],
links: %{"GitHub" => "https://github.com/knrz/geocoder"}]
end
def application do
[applications: [:logger, :poolboy, :httpoison, :geohash],
mod: {Geocoder, []}]
end
defp deps do
[{:httpoison, "~> 0.8"},
{:poison, "~> 1.5 or ~> 2.2"},
{:towel, "~> 0.2"},
{:poolboy, "~> 1.5"},
{:geohash, "~> 0.1"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:inch_ex, only: :docs},
{:excoveralls, "~> 0.6.3", only: :test}]
end
end