defmodule Eegis.MixProject do use Mix.Project @version "0.1.2" def project do [ app: :eegis, version: @version, description: description(), package: package(), docs: docs(), elixir: "~> 1.14", start_permanent: Mix.env() == :prod, deps: deps() ] end defp docs do [ main: "Eegis", source_ref: "v#{@version}", source_url: "https://github.com/alai-arpas/eegis" ] end defp description do "Pre alpha - to do" end # Run "mix help compile.app" to learn about applications. def application do [mod: {Eegis.Application, []}, extra_applications: [:logger]] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, "~> 0.29", only: :dev, runtime: false}, {:makeup_eex, ">= 0.1.1", only: :docs} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end defp package() do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/alai-arpas/eegis"} ] end end