defmodule Cardanoex.MixProject do use Mix.Project def project do [ app: :cardanoex, version: "0.4.0", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], description: description(), docs: docs(), package: package(), preferred_cli_env: [ vcr: :test, "vcr.delete": :test, "vcr.check": :test, "vcr.show": :test ] ] 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 [ {:mnemonic, "0.3.0"}, {:tesla, "1.4.3"}, {:hackney, "1.17.4"}, {:jason, "1.2.2"}, {:ex_doc, "0.25.2", only: :dev, runtime: false}, {:inch_ex, "2.0.0", only: :docs}, {:exvcr, "0.13.2", only: :test}, {:excoveralls, "0.14.2"} ] end defp docs do [extras: ["README.md"], main: "readme"] end defp description do """ Elixir client for the Cardano wallet API """ end defp package do [ files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Richard Nyström"], licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/ricn/cardanoex", "Docs" => "http://hexdocs.pm/cardanoex" } ] end end