-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
48 lines (42 loc) · 1.08 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
Code.ensure_loaded?(Hex) and Hex.start
defmodule Geo.Mixfile do
use Mix.Project
def project do
[ app: :geo,
version: "0.15.0-dev",
elixir: "~> 1.0.0",
deps: deps,
description: description,
package: package,
name: "Geo",
source_url: "https://github.com/bryanjos/geo"]
end
# Configuration for the OTP application
def application do
[
applications: [:poison, :ecto, :logger]
]
end
defp description do
"""
PostGIS extension for Postgrex. Also encodes and decodes WKB, WKT, and GeoJSON.
"""
end
defp deps do
[
{:poison, "~> 1.4"},
{:ecto, ">= 0.9.0" },
{:postgrex, "~> 0.8", optional: true },
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.6", only: :dev}
]
end
defp package do
[ # These are the default files included in the package
files: ["lib", "mix.exs", "README*", "readme*", "LICENSE*", "license*", "CHANGELOG*"],
contributors: ["Bryan Joseph"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/bryanjos/geo" }
]
end
end