Packages

Faster SFTP file downloader

Retired package: Deprecated - unneccessary

Current section

Files

Jump to
sftp_stage mix.exs
Raw

mix.exs

defmodule SftpStage.MixProject do
use Mix.Project
def project do
[
app: :sftp_stage,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Faster SFTP file downloader",
package: package()
]
end
def application do
[
extra_applications: [:logger, :ssh]
]
end
defp deps do
[
{:gen_stage, "~> 0.14"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp package do
%{
licenses: ["MIT"],
links: %{"Github" => "https://github.com/akash-akya/sftp_stage"},
maintainers: ["akashh246@gmail.com"]
}
end
end