defmodule SketchToAi.MixProject do
use Mix.Project
def project do
[
app: :sketch_to_ai,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
def application do
[]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"Elixir utilities for integrating with SketchTo - AI-powered sketch to image generation. https://www.sketchto.com/"
end
defp package do
[
licenses: ["MIT"],
links: %{
"Homepage" => "https://www.sketchto.com/",
"GitHub" => "https://github.com/sketchto/sketch-to-ai"
}
]
end
end