From 6828afa8f5f876f9d7237a5d11c3e81590659012 Mon Sep 17 00:00:00 2001 From: Mohammed Sadique Date: Fri, 10 Jan 2025 13:10:08 +0530 Subject: [PATCH] config package --- mix.exs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/mix.exs b/mix.exs index 47c3de0..0c8b14b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,18 +4,27 @@ defmodule Matplotex.MixProject do def project do [ app: :matplotex, - description: "A library for generating plots in Elixir.", + organization: :bigthinkcode, version: "0.1.0", elixir: "~> 1.17", start_permanent: Mix.env() == :prod, elixirc_paths: elixirc_paths(Mix.env()), deps: deps(), - licenses: ["MIT"], - links: %{"GitHub" => "https://github.com/BigThinkcode/matplotex"} + package: package() ] end + defp package do + [ + description: "A library for generating plots in Elixir.", + licenses: ["MIT"], + links: %{ + "GitHub" => "https://github.com/bigthinkcode/matplotex" + }, + maintainers: ["BigThinkCode", "Mohammed Sadique P", "Karthikeyan Mayilvahanam"], + ] + end defp elixirc_paths(:test), do: elixirc_paths(:dev) ++ ["test/support"] defp elixirc_paths(_), do: ["lib"]