-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
34 lines (30 loc) · 793 Bytes
/
mix.exs
File metadata and controls
34 lines (30 loc) · 793 Bytes
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 AliceReddit.Mixfile do
use Mix.Project
def project do
[app: :alice_reddit,
version: "0.1.0",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "Alice does Reddit",
package: package(),
deps: deps()]
end
def application do
[applications: [:readit]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:alice, "~> 0.3"},
{:readit, "~> 0.1.0"}
]
end
defp package do
[files: ["lib", "config", "mix.exs", "README*"],
maintainers: ["Adam Zaninovich"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/adamzaninovich/alice_reddit",
"Docs" => "https://github.com/adamzaninovich/alice_reddit"}]
end
end