-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
37 lines (32 loc) · 852 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
defmodule Exrecaptcha.Mixfile do
use Mix.Project
def project do
[app: :exrecaptcha,
version: "0.0.3",
elixir: "~> 1.0.0",
description: description,
deps: deps,
package: package]
end
def application do
[applications: [:logger, :httpotion]]
end
defp description do
"""
Simple ReCaptcha display/verify code for Elixir applications.
Designed to be used with a CMS such as Phoenix.
"""
end
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
{:httpotion, "~> 1.0.0"}
]
end
defp package do
[files: ["lib", "mix.exs", "README.md", "COPYING"],
contributors: ["Adrien Anselme"],
licenses: ["Do What the Fuck You Want to Public License, Version 2"],
links: %{ "GitHub" => "https://github.com/adanselm/exrecaptcha" }]
end
end