Current section
Files
Jump to
Current section
Files
validate_id
mix.exs
mix.exs
defmodule ValidateId.MixProject do
use Mix.Project
def project do
[
app: :validate_id,
version: "0.2.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Validate ID",
source_url: "https://github.com/jaimevelaz/validate_id"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description() do
"Tax ID Number (NIF) of the individuals/companies of Spanish nationality."
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jaimevelaz/validate_id"}
]
end
end