defmodule Eisegesis.MixProject do use Mix.Project def project do [ app: :eisegesis, version: "1.0.0", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(), escript: escript(), source_url: "https://github.com/boostintech/eisegesis", package: package(), description: description() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp escript do [ main_module: Eisegesis.CLI, path: "./bin/eisegesis" ] end defp package do [ name: "eisegesis", files: ~w(lib README* mix.exs .formatter.exs LICENSE*), licenses: ["MIT"], links: %{"Github" => "https://github.com/boostintech/eisegesis"} ] end defp description do "A collection of tasks that help you install, update and teardown package managers and other things useful for your dotfiles. It's something like a meta package manager (package manager is the wrong word... still searching for a better one)." end # Run "mix help deps" to learn about dependencies. defp deps do [ {:toml, "~> 0.6.1"}, {:rambo, "~> 0.3"}, {:exmoji, "~> 0.2.2"}, {:ex_doc, "~> 0.23", only: :dev, runtime: false}, {:git_hooks, "~> 0.5.0", only: [:test, :dev], runtime: false}, {:dialyxir, "~> 1.0", only: [:dev], runtime: false}, {:credo, "~> 1.5", only: [:dev, :test], runtime: false} ] end end