Skip to content

Commit 4b61c49

Browse files
committed
add package metadata
1 parent 3ba53fb commit 4b61c49

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

mix.exs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ defmodule Scenic.Mixfile do
22
use Mix.Project
33

44
@version "0.7.0"
5+
@github "https://github.com/boydm/scenic"
56

67
def project do
78
[
@@ -22,6 +23,13 @@ defmodule Scenic.Mixfile do
2223
# source_ref: "v#{@version}",
2324
# source_url: "https://github.com/boydm/scenic",
2425
# homepage_url: "http://kry10.com",
26+
],
27+
package: [
28+
name: :scenic,
29+
contributors: ["Boyd Multerer"],
30+
maintainers: ["Boyd Multerer"],
31+
licenses: ["Apache 2"],
32+
links: %{github: @github}
2533
],
2634
dialyzer: [plt_add_deps: :transitive, plt_add_apps: [:mix, :iex, :scenic_math]]
2735
]
@@ -52,8 +60,7 @@ defmodule Scenic.Mixfile do
5260
# Type "mix help deps" for more examples and options
5361
defp deps do
5462
[
55-
{:scenic_math, git: "[email protected]:boydm/scenic_math.git"},
56-
# {:mox, "~> 0.3.2"}
63+
{:scenic_math, "~> #{@version}"},
5764

5865
# Docs dependencies
5966
{:ex_doc, ">= 0.0.0", only: [:dev, :docs]},

0 commit comments

Comments
 (0)