defmodule AtuinStand.MixProject do use Mix.Project def project do [ app: :atuin_stand, version: "0.2.0", elixir: "~> 1.17", start_permanent: Mix.env() == :prod, deps: deps(), description: "A generic, ordered tree from the atuin-stand project", source_url: "https://github.com/atuinsh/atuin-stand/elixir", docs: [ main: "readme", extras: ["README.md": [title: "AtuinStand"]], source_ref: "master", source_url: "https://github.com/atuinsh/atuin-stand/elixir", before_closing_head_tag: &doc_styles/1 ], package: [ licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/atuinsh/atuin-stand/elixir" } ] ] end def application do [ extra_applications: [] ] end defp deps do [ {:ex_doc, "~> 0.21", only: :dev, runtime: false} ] end defp doc_styles(:html) do """ """ end defp doc_styles(_), do: "" end