defmodule InetAton.MixProject do use Mix.Project def project do [ app: :inet_aton, version: "0.1.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, deps: deps(), package: package(), description: "Converts the IP address from the IPv4 numbers-and-dots notation into a hostlong in network byte order" ] 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.0", only: :dev, runtime: false} ] end defp package do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/mrjoelkemp/inet_aton"} ] end end