-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmix.exs
41 lines (36 loc) · 1012 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
defmodule PubSub.MixProject do
use Mix.Project
def project do
[app: :pubsub,
version: "1.1.3",
elixir: "~> 1.0",
description: "Publish-Subscribe utility",
start_permanent: Mix.env == :prod,
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
# Docs
name: "PubSub",
source_url: "https://github.com/simonewebdesign/elixir_pubsub",
docs: [main: "PubSub", # The main page in the docs
extras: ["README.md"]]
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[extra_applications: [:logger]]
end
defp package do
[maintainers: ["Simone Vittori"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/simonewebdesign/elixir_pubsub"}]
end
defp deps do
[{:excoveralls, "> 0.0.0", only: :test},
{:ex_doc, "> 0.0.0", only: :dev, runtime: false},
{:inch_ex, "> 0.0.0", only: :docs},
]
end
end