-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
35 lines (30 loc) · 749 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
defmodule Feeder.Mixfile do
use Mix.Project
def project do
[app: :feeder,
version: "2.3.0",
description: description(),
package: package(),
deps: deps(),
name: "feeder",
source_url: "https://github.com/michaelnisi/feeder",
docs: [main: "readme", extras: ["README.md"]]]
end
def application do
[applications: [:xmerl]]
end
defp deps do
[{:ex_doc, "~> 0.16", only: :dev}]
end
defp description do
"""
Stream parse RSS and Atom formatted XML feeds.
"""
end
defp package do
[files: ~w(src erlang.mk Makefile README.md LICENSE),
maintainers: ["Michael Nisi"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/michaelnisi/feeder"}]
end
end