defmodule DialupNew.MixProject do use Mix.Project @version "0.1.1" def project do [ app: :dialup_new, version: @version, elixir: "~> 1.14", start_permanent: false, deps: deps(), package: package(), name: "dialup_new", description: "Project generator for the Dialup framework", source_url: "https://github.com/SouichiroTsujimoto/Dialup", homepage_url: "https://dialup-framework.org" ] end def application do [extra_applications: []] end defp deps do [ {:ex_doc, "~> 0.31", only: :dev, runtime: false} ] end defp package do [ name: :dialup_new, description: "Project generator for the Dialup framework", licenses: ["MIT"], links: %{ "Website" => "https://dialup-framework.org", "GitHub" => "https://github.com/SouichiroTsujimoto/Dialup" }, files: ~w(lib priv mix.exs README.md LICENSE) ] end end