defmodule DiffrhythmAi.MixProject do use Mix.Project @version "1767511.117.927" @source_url "https://github.com/qy-upup/diffrhythm.ai" def project do [ app: :diffrhythm_ai, version: @version, elixir: "~> 1.14", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), source_url: @source_url, homepage_url: "https://diffrhythm.ai/", docs: docs() ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:ex_doc, "~> 0.31", only: :dev, runtime: false} ] end defp description do """ Professional Elixir integration for diffrhythm.ai. Provides utilities for building links and integrating with https://diffrhythm.ai/. """ end defp package do [ name: "diffrhythm_ai", files: ~w(lib .formatter.exs mix.exs README.md LICENSE), licenses: ["MIT"], links: %{ "GitHub" => @source_url, "Homepage" => "https://diffrhythm.ai/" } ] end defp docs do [ main: "DiffrhythmAi", source_ref: "v#{@version}", source_url: @source_url ] end end