-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
44 lines (38 loc) · 966 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
38
39
40
41
42
43
44
defmodule Apix.Mixfile do
use Mix.Project
@version "0.2.2"
@github "https://github.com/liveforeverx/apix"
def project do
[
app: :apix,
elixir: "~> 1.7",
version: @version,
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
name: "Apix",
source_url: @github,
description: description(),
package: package(),
deps: deps()
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger]]
end
defp description do
"Simple convention and DSL for transformation of elixir functions to a documented and ready for validation API."
end
defp package do
[
maintainers: ["Dmitry Russ(Aleksandrov)"],
links: %{"Github" => @github},
licenses: ["Apache 2.0"]
]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
end