-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
47 lines (43 loc) · 1.11 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
defmodule Shorthand.MixProject do
use Mix.Project
@version "1.2.0"
@github_url "https://github.com/andrewtimberlake/shorthand"
def project do
[
app: :shorthand,
name: "Shorthand",
description: """
Convenience macros to eliminate laborious typing. Provides macros for short map, string keyed map, keyword lists, and structs (ES6 like style)
""",
license: "MIT",
version: @version,
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: @github_url,
docs: fn ->
[
source_ref: @version,
canonical: "https://hexdocs.pm/shorthand",
main: "Shorthand",
source_url: @github_url,
extras: ["README.md"]
]
end,
package: [
maintainers: ["Andrew Timberlake"],
contributors: ["Andrew Timberlake"],
licenses: ["MIT"],
links: %{"GitHub" => @github_url}
]
]
end
def application do
[
# extra_applications: [:logger]
]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
end