-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
46 lines (41 loc) · 947 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
45
46
defmodule Excelerator.Mixfile do
use Mix.Project
def project do
[
app: :excelerator,
version: "0.0.1",
elixir: "~> 1.0",
name: "excelerator",
source_url: "https://github.com/rubysolo/excelerator",
description: description,
package: package,
deps: deps,
docs: [extras: ["README.md"]]
]
end
def application do
[applications: [:logger]]
end
def description do
"""
Generate Excel workbooks in Elixir
"""
end
defp package do
[
files: ~w[ lib README.md mix.exs LICENSE ],
maintaners: ["Solomon White"],
licences: ["The MIT License (MIT)"],
links: %{
"GitHub" => "https://github.com/rubysolo/excelerator",
"Docs" => "http://hexdocs.pm/excelerator",
}
]
end
defp deps do
[
{:xml_builder, github: "joshnuss/xml_builder"},
{:earmark, "~> 0.1", optional: true},
]
end
end