defmodule ValidateNif.MixProject do use Mix.Project def project do [ app: :validate_nif, version: "0.1.0", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), name: "Validate NIF", source_url: "https://github.com/jaimevelaz/validate_nif" ] 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_nif"} ] end end