-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
44 lines (38 loc) · 908 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
42
43
44
defmodule SipsDownloader.Mixfile do
use Mix.Project
def project do
[app: :sips_downloader,
version: "0.2.2",
name: "SipsDownloader",
source_url: "https://github.com/DavsX/SipsDownloader",
elixir: "~> 1.0",
description: description,
package: package,
deps: deps,
escript: escript]
end
defp description do
"""
Automatically download new ElixirSips episodes
"""
end
defp package do
[
maintainers: ["Dávid Kovács"],
files: ["bin", "config", "lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/DavsX/SipsDownloader"}
]
end
def application do
[applications: [:httpoison]]
end
defp deps do
[{:httpoison, "~> 0.7"},
{:floki, "~> 0.6"},
{:html_entities, "~> 0.2"}]
end
defp escript do
[main_module: SipsDownloader]
end
end