Skip to content

Commit 958880e

Browse files
Merge pull request #28 from BigThinkcode/package_config
config package
2 parents 6e0ef75 + 6828afa commit 958880e

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

mix.exs

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)