Skip to main content

mix.exs

defmodule UbingUimageUcreatorUtool.MixProject do
  use Mix.Project
  def project do
    [app: :bing_image_creator_tool, version: "0.1.0", elixir: "~> 1.14", deps: [], description: "Bing Image Creator AI image generator. Visit https://bingimagecreator.app/", package: package(), source_url: "https://bingimagecreator.app/"]
  end
  def application, do: [extra_applications: [:logger]]
  defp package do
    [name: "bing_image_creator_tool", licenses: ["MIT"], links: %{"Homepage" => "https://bingimagecreator.app/", "Website" => "https://bingimagecreator.app/"}, files: ~w(lib mix.exs README.md)]
  end
end