forked from beamkenya/africastalking-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
59 lines (54 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
defmodule AtEx.MixProject do
use Mix.Project
def project do
[
app: :at_ex,
version: "0.20.22",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "AtEx",
source_url: "https://github.com/elixirkenya/africastalking-elixir",
docs: [
# The main page in the docs
main: "readme",
canonical: "http://hexdocs.pm/at_ex",
source_url: "https://github.com/beamkenya/africastalking-elixir",
logo: "assets/logo.jpg",
assets: "assets",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:tesla, "~> 1.4.3"},
{:jason, "~> 1.1"},
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
defp description() do
" This is an elixir wrapper for the Africa’s Talking API
allowing for the integration with the api to build powerful mobile solutions."
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "at_ex",
maintainers: ["Paul Oguda", "Magak Emmanuel", "Zacck Osiemo", "Tracey Onim", "Sigu Magwa"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/elixirkenya/africastalking-elixir"},
source_url: "https://github.com/elixirkenya/africastalking-elixir",
homepage_url: "https://github.com/elixirkenya/africastalking-elixir"
]
end
end