-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmix.exs
More file actions
45 lines (38 loc) · 817 Bytes
/
Copy pathmix.exs
File metadata and controls
45 lines (38 loc) · 817 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
45
defmodule Geohax.Mixfile do
use Mix.Project
@source_url "https://github.com/evuez/geohax"
def project do
[
app: :geohax,
version: "1.0.2",
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[]
end
defp description do
"""
Geohash encoding and decoding for Elixir.
"""
end
defp package do
[
licenses: ["MIT"],
maintainers: ["evuez <hello@evuez.net>"],
links: %{"GitHub" => @source_url}
]
end
def deps do
[{:ex_doc, ">= 0.0.0", only: :dev}, {:inch_ex, only: :docs}]
end
defp docs do
[main: "Geohax", source_url: @source_url]
end
end