defmodule OpenRouter.MixProject do use Mix.Project def project do [ app: :openrouter, version: "0.0.1", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), # Add metadata fields here description: "OpenRouter API for Elixir", package: %{ licenses: ["Apache"], # Use SPDX license identifiers links: %{ "GitHub" => "https://github.com/arthurcolle/openrouter.ex", "Documentation" => "https://hexdocs.pm/openrouter" } } ] end # Run "mix help compile.app" to learn about applications. def application do children = [ {Finch, name: OpenRouterFinch} ] [ extra_applications: [:logger], children: children ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:finch, "~> 0.18.0"}, {:jason, "~> 1.2"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end end