Current section
Files
Jump to
Current section
Files
toddy_widgets
mix.exs
mix.exs
defmodule ToddyWidgets.MixProject do
use Mix.Project
def project do
[
app: :toddy_widgets,
version: "0.0.1",
elixir: "~> 1.15",
description: "A curated collection of widgets for the toddy native GUI renderer",
package: package(),
source_url: "https://github.com/toddy-ui/toddy-elixir",
homepage_url: "https://github.com/toddy-ui/toddy-elixir",
deps: deps()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
name: "toddy_widgets",
licenses: ["MIT"],
build_tools: ["mix"],
links: %{
"GitHub" => "https://github.com/toddy-ui/toddy-elixir"
},
files: ~w(lib mix.exs README.md LICENSE)
]
end
end