defmodule LiveState.MixProject do use Mix.Project @description "A package to manage web application state" def project do [ app: :live_state, version: "0.2.0", elixir: "~> 1.10", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), description: @description, package: [ licenses: ["MIT"], links: %{"Github" => "https://github.com/gaslight/live_state"} ] ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] # 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 [ {:phoenix, ">= 1.5.7"}, {:ex_doc, ">= 0.0.0"} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end