forked from maxneuvians/nio_google_geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
45 lines (39 loc) · 1.13 KB
/
mix.exs
File metadata and controls
45 lines (39 loc) · 1.13 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
45
defmodule NioGoogleGeocoder.Mixfile do
use Mix.Project
def project do
[app: :nio_google_geocoder,
version: "0.7.0",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:httpoison]]
end
defp deps do
[
{:ecto, "~> 1.1"},
{:httpoison, "~> 0.9.0"},
{:poison, "~> 1.5"},
{:hackney, "~> 1.7", override: true}
]
end
defp description do
"""
NioGoogleGeocoder is a collection of Elixir convenience functions to
geocode a single, or list of, addresses. It also includes a function
that automatically adds a geo location to an `Ecto.Changeset`.
"""
end
defp package do
[# These are the default files included in the package
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Max Neuvians"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/maxneuvians/nio_google_geocoder",
"Docs" => "https://github.com/maxneuvians/nio_google_geocoder"}]
end
end