defmodule CarlaTestHelper.MixProject do use Mix.Project def project do [ app: :carla_test_helper, version: "0.1.13", elixir: "~> 1.6", start_permanent: Mix.env() == :prod, description: description(), package: package(), name: "Carla Test Helper", deps: deps(), source_url: "https://github.com/Revmaker/carla-test-helper" ] 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 [ {:httpoison, "~> 1.0"}, {:poison, "~> 3.1"}, {:ex_doc, ">= 0.0.0", only: :dev}, {:direxion, "~> 0.1.3"} ] end defp description() do "This repo contains a testing library used in Carla end-to-end tests. It provides a library to describe and test conversations." end defp package() do [ # organization: "carlabs", # maintainers: ["Carlabs"], maintainers: [], licenses: [], links: %{"GitHub" => "https://github.com/Revmaker/carla-test-helper"} ] end end