forked from meyercm/shorter_maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
37 lines (32 loc) · 783 Bytes
/
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
defmodule TinyMaps.Mixfile do
use Mix.Project
@version "3.0.0"
@repo_url "https://github.com/abshierjoel/tiny_maps"
def project do
[
app: :tiny_maps,
version: @version,
elixir: "~> 1.0",
otp: "~> 21",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
package: hex_package(),
description: "~M sigil for map shorthand. `~M{id, name} ~> %{id: id, name: name}`",
# Docs
name: "TinyMaps"
]
end
def application do
[extra_applications: [:logger]]
end
defp hex_package do
[maintainers: ["Joel Abshier"], licenses: ["MIT"], links: %{"GitHub" => @repo_url}]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end