defmodule Trading.MixProject do use Mix.Project def project do [ app: :trading, version: "0.1.0", elixir: "~> 1.18", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package() ] 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 [ {:jason, "~> 1.4"}, {:ex_doc, "~> 0.31", only: :dev, runtime: false}, {:dialyxir, "~> 1.4", only: [:dev], runtime: false}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false} ] end defp description() do "A high-performance trading system with order matching, backtesting, and analytics capabilities." end defp package() do [ name: "trading", licenses: ["MIT"], links: %{"GitHub" => "https://github.com/international-distributed-systems-corp/trading"} ] end end