File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,27 @@ defmodule Matplotex.MixProject do
44 def project do
55 [
66 app: :matplotex ,
7- description: "A library for generating plots in Elixir." ,
7+
88 organization: :bigthinkcode ,
99 version: "0.1.0" ,
1010 elixir: "~> 1.17" ,
1111 start_permanent: Mix . env ( ) == :prod ,
1212 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
1313 deps: deps ( ) ,
14- licenses: [ "MIT" ] ,
15- links: % { "GitHub" => "https://github.com/BigThinkcode/matplotex" }
14+ package: package ( )
1615 ]
1716 end
17+ defp package do
18+ [
19+ description: "A library for generating plots in Elixir." ,
20+ licenses: [ "MIT" ] ,
21+ links: % {
22+ "GitHub" => "https://github.com/bigthinkcode/matplotex"
23+ } ,
24+ maintainers: [ "BigThinkCode" , "Mohammed Sadique P" , "Karthikeyan Mayilvahanam" ] ,
1825
26+ ]
27+ end
1928 defp elixirc_paths ( :test ) , do: elixirc_paths ( :dev ) ++ [ "test/support" ]
2029 defp elixirc_paths ( _ ) , do: [ "lib" ]
2130
You can’t perform that action at this time.
0 commit comments