-
Notifications
You must be signed in to change notification settings - Fork 70
/
mix.exs
59 lines (52 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
59
defmodule GeoPostgis.Mixfile do
use Mix.Project
@source_url "https://github.com/felt/geo_postgis"
@version "3.7.1"
def project do
[
app: :geo_postgis,
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
name: "GeoPostGIS",
deps: deps(),
package: package(),
docs: docs(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
def application do
[extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:geo, "~> 3.6 or ~> 4.0"},
{:postgrex, ">= 0.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ecto, "~> 3.0", optional: true},
{:ecto_sql, "~> 3.0", optional: true, only: :test},
{:poison, "~> 2.2 or ~> 3.0 or ~> 4.0 or ~> 5.0 or ~> 6.0", optional: true},
{:jason, "~> 1.2", optional: true}
]
end
defp package do
[
description: "PostGIS extension for Postgrex.",
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md"],
maintainers: ["Tyler Young", "Bryan Joseph"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: ["CHANGELOG.md", "README.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end