-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmix.exs
31 lines (27 loc) · 795 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
defmodule Const.Mixfile do
use Mix.Project
def project do
[app: :ex_const,
version: "0.3.0",
elixir: "~> 1.9",
description: "Constants and Enumerated Values for Elixir",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package()]
end
# Configuration for the OTP application
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: []]
end
defp deps do
[{:ex_doc, "~> 0.32", only: :dev, runtime: false}]
end
defp package do
[files: ["lib", "test", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Juan Jose Comellas"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/jcomellas/ex_const"}]
end
end