defmodule Kuu.MixProject do use Mix.Project def project do [ app: :kuu, version: "0.0.1", elixir: "~> 1.14", description: "Language-agnostic CLI argument definition spec — Elixir binding (early placeholder wrapping the kuu-cli reference binary)", package: [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/kawaz/kuu", "Spec" => "https://github.com/kawaz/kuu"} ], deps: [{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}] ] end def application, do: [] end