forked from pareeohnos/geonames-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
44 lines (37 loc) · 864 Bytes
/
mix.exs
File metadata and controls
44 lines (37 loc) · 864 Bytes
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 Geonames.Mixfile do
use Mix.Project
def project do
[app: :geonames,
version: "1.0.3",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
name: "GeoNames-Elixir",
description: description(),
package: package()]
end
def application do
[applications: [:logger, :poison, :httpoison]]
end
defp deps do
[
{ :poison, "~> 3.0" },
{ :httpoison, "~> 1.6.2" },
{ :ex_doc, "~> 0.12", only: :dev }
]
end
defp description do
"""
A simple wrapper around the geonames.org JSON API
"""
end
defp package do
[
maintainers: ["Adrian Hooper"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/pareeohnos/geonames-elixir"},
files: ~w(mix.exs README.md lib)
]
end
end