forked from jsonkenl/xlsxir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
52 lines (46 loc) · 1.12 KB
/
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
47
48
49
50
51
52
defmodule Xlsxir.Mixfile do
use Mix.Project
def project do
[
app: :xlsxir,
version: "1.6.4",
name: "Xlsxir",
source_url: "https://github.com/jsonkenl/xlsxir",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
docs: [main: "overview", extras: ["CHANGELOG.md", "NUMBER_STYLES.md", "OVERVIEW.md"]]
]
end
def application do
[
mod: {Xlsxir, []},
extra_applications: [:logger, :crypto]
]
end
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
#{:earmark, github: "pragdave/earmark", override: true, only: :dev},
{:erlsom, "~> 1.5"}
]
end
defp description do
"""
Xlsx file parser (Excel, LibreOffice, etc.)
"""
end
defp package do
[
maintainers: ["Jason Kennell"],
licenses: ["MIT License"],
links: %{
"Github" => "https://github.com/jsonkenl/xlsxir",
"Change Log" => "https://hexdocs.pm/xlsxir/changelog.html"
}
]
end
end