defmodule Lab.MixProject do use Mix.Project def project do [ app: :lab, version: "0.3.0-dev", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps(), package: package(), description: "Elixir wrapper for the GitLab API" ] 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 [ {:ex_doc, "~> 0.21.1"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end defp package() do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], exclude_files: ["lib/mix"], maintainers: ["Bryan Paxton"], licenses: ["MIT"], links: %{"Gitlab" => "https://gitlab.com/starbelly/lab", "GitHub" => "https://github.com/starbelly/lab"}, ] end end