Current section

Files

Jump to
zstream mix.exs
Raw

mix.exs

defmodule Zstream.Mixfile do
use Mix.Project
@source_url "https://github.com/ananthakumaran/zstream"
@version "0.6.7"
def project do
[
app: :zstream,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
description: "Streaming zip file writer and reader",
package: package(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"coveralls.json": :test
],
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :crypto]
]
end
defp deps do
[
{:temp, "~> 0.4", only: :test, runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.18", only: :test}
]
end
defp package do
%{
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Changelog" => "https://hexdocs.pm/zstream/changelog.html"
},
maintainers: ["Anantha Kumaran <ananthakumaran@gmail.com>"]
}
end
defp docs do
[
extras: ["README.md", "CHANGELOG.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
]
end
end