-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
33 lines (30 loc) · 777 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
defmodule Docxelixir.Mixfile do
use Mix.Project
def project do
[
app: :docxelixir,
version: "1.0.1",
elixir: "~> 1.0",
name: "Docxelixir",
description: "reads docx document files (paragraphs, tables)",
source_url: "https://github.com/andrewaguiar/docxelixir",
package: package(),
deps: deps()
]
end
defp deps() do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false}
]
end
defp package do
[
name: :docxelixir,
files: ["lib", "samples", "mix.exs", "README.md", "LICENSE.txt"],
maintainers: ["Andrew S Aguiar"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/andrewaguiar/docxelixir"}
]
end
end