-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (43 loc) · 1.16 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
48
defmodule Exsms.MixProject do
use Mix.Project
def project do
[
app: :exsms,
version: "0.1.1",
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Exsms",
source_url: "https://gitlab.com/ahamtech/elixir/exsms"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:httpoison]
]
end
defp description() do
"Exsms: A Elixir library for sending transactional SMS - supoprts Sendinblue, mailjet and textlocal"
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:poison, "~> 3.1"},
{:httpoison, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package() do
[
name: "exsms",
files: ["config", "lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Anwesh Reddy","Mahesh Reddy", "Malreddy Ankanna"],
licenses: ["GNU Lesser General Public License v3.0"],
links: %{"GitHub" => "https://gitlab.com/ahamtech/elixir/exsms"}
]
end
end