-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmix.exs
54 lines (46 loc) · 1.02 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
53
54
defmodule Unzip.MixProject do
use Mix.Project
@version "0.12.0"
@scm_url "https://github.com/akash-akya/unzip"
def project do
[
app: :unzip,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Package
package: package(),
description: description(),
# Docs
source_url: @scm_url,
homepage_url: @scm_url,
docs: [
main: "readme",
source_ref: "v#{@version}",
extras: ["README.md"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp description do
"Elixir library to stream zip file contents. Works with remote files. Supports Zip64"
end
defp package do
[
maintainers: ["Akash Hiremath"],
licenses: ["MIT"],
links: %{GitHub: "https://github.com/akash-akya/unzip"}
]
end
end