forked from for-GET/katt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.exs
39 lines (35 loc) · 913 Bytes
/
package.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
defmodule KATT.Mixfile do
use Mix.Project
def project do
[app: :katt,
version: "1.3.0",
description: description,
package: package,
deps: deps]
end
defp deps do
[{:lhttpc, github: "waisbrot/lhttpc"},
{:mochijson3, github: "tophitpoker/mochijson3"},
{:meck, "~> 0.8.2", only: :test, env: :test},
{:neotoma, github: "seancribbs/neotoma", only: :dev, env: :dev}]
end
defp description do
"""
KATT (Klarna API Testing Tool) is an HTTP-based API testing tool for Erlang.
"""
end
defp package do
[files: ["AUTHORS",
"GNUMakefile",
"LICENSE",
"README.md",
"doc",
"include",
"package.exs",
"priv",
"rebar.config",
"src"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/for-GET/katt"}]
end
end