forked from ishikawa/elixir-magic-number
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
37 lines (33 loc) · 850 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 MagicNumber.Mixfile do
use Mix.Project
def project do
[app: :magic_number,
version: "0.0.5-dev",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "MagicNumber is the module to determine a file's type from its magic number.",
package: package,
deps: deps,
source_url: "https://github.com/ishikawa/elixir-magic-number",
docs: [extras: ["README.md"]]]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:earmark, "~> 0.2.1", only: :dev},
{:ex_doc, "~> 0.11.4", only: :dev},
]
end
defp package do
[
maintainers: ["Takanori Ishikawa"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/ishikawa/elixir-magic-number",
},
]
end
end