Current section
Files
Jump to
Current section
Files
not_qwerty123
mix.exs
mix.exs
defmodule NotQwerty123.Mixfile do
use Mix.Project
@version "1.0.0"
@description """
Library to check password strength and generate random passwords.
"""
def project do
[app: :not_qwerty123,
version: @version,
elixir: "~> 1.1",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "NotQwerty123",
description: @description,
package: package,
source_url: "https://github.com/riverrun/not_qwerty123",
compilers: [:gettext] ++ Mix.compilers,
deps: deps]
end
def application do
[applications: [:gettext, :logger]]
end
defp deps do
[{:gettext, "~> 0.7"}]
end
defp package do
[
maintainers: ["David Whitlock"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/riverrun/notqwerty123",
"Docs" => "http://hexdocs.pm/not_qwerty123"}
]
end
end