defmodule Issues.MixProject do use Mix.Project def project do [ app: :issues, name: "Issues", escript: escript(), version: "0.1.0", elixir: "~> 1.8", start_permanent: Mix.env() == :prod, source_url: "https://github.com/Santosh1608/issues", deps: deps(), description: "The main purpose of this package is it gives you the issues of projects which are available in GitHub.To get the issues u need to enter the GitHub user_name,project_name and number of issues that u want", package: package() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger, :httpoison] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:httpoison, "~> 0.9"}, {:poison, "~> 2.2"}, {:ex_doc, "~> 0.12"}, {:earmark, "~> 1.0"}, # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end defp escript do [main_module: Issues.CLI] end defp package do [ maintainers: ["Santhosh"], licenses: ["Santhosh licenses"], links: "" ] end end