forked from artemeff/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
41 lines (36 loc) · 1.12 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
defmodule Exredis.Mixfile do
use Mix.Project
@version "0.2.0"
def project do
[app: :exredis,
version: @version,
elixir: "~> 1.0.0",
name: "exredis",
source_url: "https://github.com/artemeff/exredis",
homepage_url: "http://artemeff.github.io/exredis",
deps: deps,
package: package,
description: "Redis client for Elixir",
docs: [readme: "README.md", main: "README",
source_ref: "v#{@version}",
source_url: "https://github.com/artemeff/exredis"]]
end
# Configuration for the OTP application
def application do
[applications: [:eredis]]
end
# Dependencies
defp deps do
[{:eredis, ">= 1.0.8"},
{:benchfella, "~> 0.2.0", only: :dev},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.7", only: :dev}]
end
defp package do
[contributors: ["Yuri Artemev", "Joakim Kolsjö", "lastcanal", "Aidan Steele",
"Andrea Leopardi", "Ismael Abreu", "David Rouchy", "David Copeland",
"Psi", "Andrew Forward", "Sean Stavropoulos"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/artemeff/exredis"}]
end
end