Packages

Implemantation of the classic cipher algorithm called Caesar Cipher.

Current section

Files

Jump to
Raw

mix.exs

defmodule CaesarCipher.MixProject do
use Mix.Project
@source_url "https://github.com/TheLe0/caesar_cipher"
@version "1.0.0"
def project do
[
app: :caesar_cipher,
version: "0.2.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Caesar Cipher",
source_url: @source_url,
description: description(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
Implemantation of the classic cipher algorithm called Caesar Cipher.
"""
end
defp package do
[
licenses: ["MIT"],
maintainers: ["Leonardo Tosin"],
files: [".formatter.exs", "lib", "mix.exs", "LICENSE", "CHANGELOG.md", "README.md"],
links: %{
"GitHub" => @source_url
}
]
end
defp docs do
[
main: "readme",
extras: [
"README.md",
"LICENSE",
"CHANGELOG.md": [filename: "CHAN.GE.LOG"]
],
source_ref: "v#{@version}",
source_url: @source_url,
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.27.3"},
{:unicode, "~> 1.13"}
]
end
end