defmodule Ding.MixProject do use Mix.Project def project do [ app: :ding, version: "0.0.1", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, deps: [{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}], package: package(), ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp package do [ description: "Display a message in an onscreen dialogue.", files: ["lib", "mix.exs", "README.md", "LICENSE.md"], maintainers: ["Calliope Youngblood"], licenses: ["MPL-2.0"], links: %{"Source" => "https://base.bingo/hex/ding"}, ] end end