whisper server elixir
This commit is contained in:
54
whisper_server/deps/unzip/mix.exs
Normal file
54
whisper_server/deps/unzip/mix.exs
Normal file
@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user