-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
37 lines (34 loc) · 880 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
defmodule Ofex.Mixfile do
use Mix.Project
def project do
[
app: :ofex,
name: "Ofex",
description: "A simple parser for Open Financial Exchange (OFX) data in elixir",
version: "0.2.5",
elixir: "~> 1.3",
package: [
maintainers: ["Jon Carstens"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/jjcarstens/ofex"
}
],
deps: deps(),
source_url: "https://github.com/jjcarstens/ofex",
docs: [main: "Ofex", extras: ["README.md"]]
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:credo, ">= 0.0.0", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:sweet_xml, "~> 0.6"},
{:timex, "~> 3.0"},
]
end
end