defmodule AshRandomParams.MixProject do use Mix.Project def project do [ app: :ash_random_params, version: "0.2.0", elixir: "~> 1.17", consolidate_protocols: Mix.env() not in [:dev, :test], start_permanent: Mix.env() == :prod, deps: deps(), description: "Random parameter generation for Ash resources.", package: package(), source_url: "https://github.com/devall-org/ash_random_params", homepage_url: "https://github.com/devall-org/ash_random_params", docs: [ main: "readme", extras: ["README.md"] ] ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ash, ">= 0.0.0"}, {:spark, ">= 0.0.0"}, {:sourceror, ">= 0.0.0", only: [:dev, :test], optional: true}, {:ex_doc, "~> 0.29", only: :dev, runtime: false} ] end defp package do [ name: "ash_random_params", licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/devall-org/ash_random_params" } ] end end