forked from cybrox/inwx-domrobot-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (39 loc) · 971 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
45
46
47
48
defmodule InwxDomrobot.Mixfile do
use Mix.Project
def project do
[
app: :inwx_domrobot,
version: "0.1.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
name: "INWX DomRobot",
description: "Simple interface for INWX DomRobot in Elixir",
source_url: "https://github.com/cybrox/inwx-domrobot-elixir",
package: package()
]
end
# Package
defp package do
[
licenses: ["MIT"],
maintainers: ["Sven Gehring <[email protected]>"],
links: %{github: "https://github.com/cybrox/inwx-domrobot-elixir"}
]
end
# Application
def application do
[extra_applications: [:logger]]
end
# Dependencies
defp deps do
[
{:httpoison, "~> 1.6.2"},
{:totpex, "~> 0.1.4"},
{:jason, "~> 1.1"},
# Development dependencies
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
end