defmodule LanguageList.MixProject do use Mix.Project def project do [ app: :language_list, version: "1.0.2", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps(), name: "language_list", source_url: "https://github.com/GunnarPDX/language_list" ] 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 [ {:poison, "~> 3.1"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp description() do "A few sentences (a paragraph) describing the project." end defp package() do [ # This option is only needed when you don't want to use the OTP application name name: "language_list", # These are the default files included in the package files: ~w(lib priv .formatter.exs mix.exs README* LICENSE*), licenses: ["MIT"], links: %{"GitHub" => "https://github.com/GunnarPDX/language_list"} ] end end