defmodule Utrellis2U3d.MixProject do
use Mix.Project
def project do
[app: :trellis2_3d, version: "0.1.0", elixir: "~> 1.14", deps: [], description: "Trellis 2 AI 3D model generator from photos and prompts. Visit https://trellis-2.net/", package: package(), source_url: "https://trellis-2.net/"]
end
def application, do: [extra_applications: [:logger]]
defp package do
[name: "trellis2_3d", licenses: ["MIT"], links: %{"Homepage" => "https://trellis-2.net/", "Website" => "https://trellis-2.net/"}, files: ~w(lib mix.exs README.md)]
end
end