-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
49 lines (43 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 GetGeocode.MixProject do
use Mix.Project
def project do
[
app: :get_geocode,
version: "0.0.3",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
# Doc
name: "GetGeocode",
source_url: "https://github.com/ericklima-ca/get_geocode",
homepage_url: "https://github.com/ericklima-ca/get_geocode"
]
end
def application do
[
extra_applications: [:logger]
# mod: {GetGeocode, []}
]
end
defp deps do
[
{:httpoison, "~> 1.8"},
{:jason, "~> 1.2"},
{:ex_doc, "~> 0.25.0", only: :dev, runtime: false},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
defp description() do
"A simple API to get geodata from CEP (brazilian) or full address format."
end
defp package() do
[
name: "get_geocode",
maintainer: ["Erick Amorim"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/ericklima-ca/get_geocode"}
]
end
end