Packages

Wrapper around the rsync utility, with progress reporting

Current section

Files

Jump to
rsync mix.exs
Raw

mix.exs

defmodule Rsync.MixProject do
use Mix.Project
def project do
[
app: :rsync,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Wrapper around the rsync utility, with progress reporting",
package: package(),
source_url: "https://gitlab.com/adamwight/rsync_ex"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.0", only: :dev, runtime: false}
]
end
defp package do
[
files: ~w(.formatter.exs lib mix.exs *.md),
name: :rsync,
maintainers: ["adamwight"],
licenses: ["Apache-2.0"],
links: %{
"GitLab" => "https://gitlab.com/adamwight/rsync_ex"
}
]
end
end