Skip to content

Commit

Permalink
publish version v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ruoss committed Jul 31, 2020
1 parent a88e1d7 commit 0053458
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ defmodule Ymlr.MixProject do
def project do
[
app: :ymlr,
description: "A YAML Encoder",
description: "A YAML encoder for Elixir",
version: "0.0.1",
elixir: "~> 1.10",
deps: deps(),
dialyzer: dialyzer(),
package: package(),
preferred_cli_env: cli_env(),
test_coverage: [tool: ExCoveralls],
test_paths: ["lib"],

]
end

Expand Down Expand Up @@ -51,4 +51,15 @@ defmodule Ymlr.MixProject do
plt_file: {:no_warn, "priv/plts/k8s.plt"}
]
end

defp package do
[
name: :ymlr,
maintainers: ["Michael Ruoss", "Jean-Luc Geering"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/ufirstgroup/ymlr"
}
]
end
end

0 comments on commit 0053458

Please sign in to comment.