forked from whatyouhide/redix_pubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
34 lines (30 loc) · 972 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
defmodule RedixPubsub.Mixfile do
use Mix.Project
@version "0.1.0"
def project() do
[app: :redix_pubsub,
version: @version,
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: [maintainers: ["Andrea Leopardi"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/whatyouhide/redix_pubsub"}],
description: "Elixir library for using Redis Pub/Sub features (built on top of Redix)",
name: "Redix.PubSub",
docs: [main: "Redix.PubSub",
source_ref: "v#{@version}",
source_url: "https://github.com/whatyouhide/redix_pubsub",
extras: ["README.md"]]]
end
def application() do
[applications: [:logger, :redix]]
end
defp deps() do
[{:connection, "~> 1.0"},
{:redix, "~> 0.4.0"},
{:earmark, ">= 0.0.0", only: :docs},
{:ex_doc, ">= 0.0.0", only: :docs}]
end
end