defmodule Kinemat.Mixfile do use Mix.Project @description """ Forward and reverse kinematics for robotics and simulations. """ @version "1.0.1" def project do [ app: :kinemat, version: @version, elixir: "~> 1.5", start_permanent: Mix.env() == :prod, package: package(), deps: deps(), description: @description, docs: [ main: "readme", extras: ["README.md", "CHANGELOG.md"] ] ] end def package do [ maintainers: ["James Harton "], licenses: ["HL3-FULL"], links: %{ "Source" => "https://harton.dev/james/kinemat", "GitHub" => "https://github.com/jimsynz/kinemat", "Changelog" => "https://docs.harton.nz/james/kinemat/changelog.html", "Sponsor" => "https://github.com/sponsors/jimsynz" } ] 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 [ {:angle, ">= 0.3.0"}, {:credo, "~> 1.6", only: ~w[dev test]a, runtime: false}, {:dialyxir, "~> 1.4", only: ~w[dev test]a, runtime: false}, {:doctor, "~> 0.21", only: ~w[dev test]a, runtime: false}, {:earmark, "~> 1.4", only: ~w[dev test]a, runtime: false}, {:ex_check, "~> 0.16", only: ~w[dev test]a, runtime: false}, {:ex_doc, "~> 0.30", only: ~w[dev test]a, runtime: false}, {:git_ops, "~> 2.4", only: ~w[dev test]a, runtime: false}, {:graphmath, "~> 2.5"} ] end end