defmodule Stringly.MixProject do use Mix.Project def project do [ app: :stringly, version: "0.0.1", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps(), name: "Stringly", source_url: "https://github.com/muzhawir/stringly" ] 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 [ {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.31", only: :dev, runtime: false}, {:styler, "~> 0.11", only: [:dev, :test], runtime: false} ] end defp description do "Elixir package with a wide variety of string manipulation functions. Inspired by Laravel's Str helper, it enhances Elixir's built-in String module with additional practical tools." end defp package do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/muzhawir/stringly"} ] end end