defmodule Geminex.MixProject do use Mix.Project def project do [ app: :geminex, version: "0.0.3", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), elixirc_paths: elixirc_paths(Mix.env()), description: "Geminex is an Elixir client for Gemini's API, providing streamlined access to trading, account management, and market data. It simplifies integration with Gemini’s REST API, handling authentication, requests, and responses for both public and private endpoints. ", package: [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/mpol1t/geminex"} ] ] end defp elixirc_paths(:test), do: ["test/support", "lib"] defp elixirc_paths(_), do: ["lib"] # 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 [ {:jason, "~> 1.2"}, {:mint, "~> 1.6"}, {:tesla, "~> 1.13.2"}, {:stream_data, "~> 1.1.1", only: :test}, {:mox, "~> 1.2", only: :test}, {:ex_doc, "~> 0.34.2", only: :dev, runtime: false}, {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:styler, "~> 1.1.2", only: [:dev, :test], runtime: false} ] end end