-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
42 lines (37 loc) · 1.04 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
defmodule ExClacks.Mixfile do
use Mix.Project
def project do
[app: :ex_clacks,
version: "0.1.0",
elixir: "~> 1.4",
name: "ExClacks",
source_url: "https://github.com/YellowApple/ExClacks",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: description()]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: []]
end
defp deps do
[{:plug, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp description do
"""
A man is not dead while his name is still spoken.
"""
end
defp package do
%{maintainers: ["Ryan S. Northrup"],
files: ["lib/ex_clacks.ex",
"mix.exs",
"README.md",
"COPYING"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/YellowApple/ExClacks"}}
end
end